Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(520)

Unified Diff: webkit/support/test_webkit_platform_support.cc

Issue 10086018: More DomStorage house cleaning (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/support/test_webkit_platform_support.h ('k') | webkit/support/webkit_support.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/support/test_webkit_platform_support.cc
===================================================================
--- webkit/support/test_webkit_platform_support.cc (revision 132437)
+++ webkit/support/test_webkit_platform_support.cc (working copy)
@@ -321,25 +321,9 @@
WebKit::WebStorageNamespace*
TestWebKitPlatformSupport::createLocalStorageNamespace(
const WebKit::WebString& path, unsigned quota) {
-#ifdef ENABLE_NEW_DOM_STORAGE_BACKEND
return dom_storage_system_.CreateLocalStorageNamespace();
-#else
- return WebKit::WebStorageNamespace::createLocalStorageNamespace(path, quota);
-#endif
}
-void TestWebKitPlatformSupport::dispatchStorageEvent(
- const WebKit::WebString& key,
- const WebKit::WebString& old_value, const WebKit::WebString& new_value,
- const WebKit::WebString& origin, const WebKit::WebURL& url,
- bool is_local_storage) {
- // All events are dispatched by the WebCore::StorageAreaProxy in the
- // simple single process case.
-#ifdef ENABLE_NEW_DOM_STORAGE_BACKEND
- NOTREACHED();
-#endif
-}
-
WebKit::WebIDBFactory* TestWebKitPlatformSupport::idbFactory() {
return WebKit::WebIDBFactory::create();
}
« no previous file with comments | « webkit/support/test_webkit_platform_support.h ('k') | webkit/support/webkit_support.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698