Title: [137315] trunk/Source/WebKit/chromium
Revision
137315
Author
[email protected]
Date
2012-12-11 07:50:09 -0800 (Tue, 11 Dec 2012)

Log Message

[Chromium] Call createLocalStorageNamespace through Platform.h
https://bugs.webkit.org/show_bug.cgi?id=104675

Reviewed by Kentaro Hara.

Some #include cleanup missing from bug 85766. Part of a
refactoring series; see tracking bug 82948.

* src/StorageNamespaceProxy.cpp:
(WebCore::StorageNamespace::localStorageNamespace):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (137314 => 137315)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-12-11 15:46:16 UTC (rev 137314)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-12-11 15:50:09 UTC (rev 137315)
@@ -1,3 +1,16 @@
+2012-12-11  Mark Pilgrim  <[email protected]>
+
+        [Chromium] Call createLocalStorageNamespace through Platform.h
+        https://bugs.webkit.org/show_bug.cgi?id=104675
+
+        Reviewed by Kentaro Hara.
+
+        Some #include cleanup missing from bug 85766. Part of a
+        refactoring series; see tracking bug 82948.
+
+        * src/StorageNamespaceProxy.cpp:
+        (WebCore::StorageNamespace::localStorageNamespace):
+
 2012-12-11  Stephen White  <[email protected]>
 
         Unreviewed.  Rolled DEPS.

Modified: trunk/Source/WebKit/chromium/src/StorageNamespaceProxy.cpp (137314 => 137315)


--- trunk/Source/WebKit/chromium/src/StorageNamespaceProxy.cpp	2012-12-11 15:46:16 UTC (rev 137314)
+++ trunk/Source/WebKit/chromium/src/StorageNamespaceProxy.cpp	2012-12-11 15:50:09 UTC (rev 137315)
@@ -35,14 +35,14 @@
 #include "WebStorageNamespace.h"
 #include "WebViewClient.h"
 #include "WebViewImpl.h"
-#include "platform/WebKitPlatformSupport.h"
+#include <public/Platform.h>
 #include <public/WebString.h>
 
 namespace WebCore {
 
 PassRefPtr<StorageNamespace> StorageNamespace::localStorageNamespace(const String& path, unsigned quota)
 {
-    return adoptRef(new StorageNamespaceProxy(WebKit::webKitPlatformSupport()->createLocalStorageNamespace(path, quota), LocalStorage));
+    return adoptRef(new StorageNamespaceProxy(WebKit::Platform::current()->createLocalStorageNamespace(path, quota), LocalStorage));
 }
 
 PassRefPtr<StorageNamespace> StorageNamespace::sessionStorageNamespace(Page* page, unsigned quota)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to