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

Unified Diff: content/browser/in_process_webkit/browser_webkitplatformsupport_impl.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
Index: content/browser/in_process_webkit/browser_webkitplatformsupport_impl.cc
===================================================================
--- content/browser/in_process_webkit/browser_webkitplatformsupport_impl.cc (revision 132437)
+++ content/browser/in_process_webkit/browser_webkitplatformsupport_impl.cc (working copy)
@@ -7,7 +7,6 @@
#include "base/file_util.h"
#include "base/logging.h"
#include "content/browser/gpu/browser_gpu_channel_host_factory.h"
-#include "content/browser/in_process_webkit/dom_storage_message_filter.h"
#include "content/browser/in_process_webkit/indexed_db_key_utility_client.h"
#include "content/common/indexed_db/indexed_db_key.h"
#include "content/public/common/serialized_script_value.h"
@@ -116,32 +115,6 @@
return WebKit::WebData();
}
-WebKit::WebStorageNamespace*
-BrowserWebKitPlatformSupportImpl::createLocalStorageNamespace(
- const WebKit::WebString& path, unsigned quota) {
- // The "WebStorage" interface is used for renderer WebKit -> browser WebKit
- // communication only. "WebStorageClient" will be used for browser WebKit ->
- // renderer WebKit. So this will never be implemented.
- NOTREACHED();
- return 0;
-}
-
-void BrowserWebKitPlatformSupportImpl::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) {
-#ifdef ENABLE_NEW_DOM_STORAGE_BACKEND
- NOTREACHED();
-#else
- // TODO(jorlow): Implement
- if (!is_local_storage)
- return;
-
- DOMStorageMessageFilter::DispatchStorageEvent(key, old_value, new_value,
- origin, url, is_local_storage);
-#endif
-}
-
WebKit::WebSharedWorkerRepository*
BrowserWebKitPlatformSupportImpl::sharedWorkerRepository() {
NOTREACHED();

Powered by Google App Engine
This is Rietveld 408576698