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

Unified Diff: chrome/browser/renderer_host/resource_message_filter.h

Issue 5722003: Make DOMStorageDispatcherHost be a message filter (and rename it accordingly)... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years 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: chrome/browser/renderer_host/resource_message_filter.h
===================================================================
--- chrome/browser/renderer_host/resource_message_filter.h (revision 68741)
+++ chrome/browser/renderer_host/resource_message_filter.h (working copy)
@@ -23,6 +23,7 @@
#include "base/string16.h"
#include "base/task.h"
#include "build/build_config.h"
+#include "chrome/browser/in_process_webkit/webkit_context.h"
#include "chrome/browser/net/resolve_proxy_msg_helper.h"
#include "chrome/browser/renderer_host/resource_dispatcher_host.h"
#include "chrome/common/content_settings.h"
@@ -34,7 +35,6 @@
class BlobDispatcherHost;
class ChromeURLRequestContext;
class DatabaseDispatcherHost;
-class DOMStorageDispatcherHost;
class FileSystemDispatcherHost;
class FileUtilitiesDispatcherHost;
struct FontDescriptor;
@@ -444,9 +444,6 @@
scoped_refptr<RenderWidgetHelper> render_widget_helper_;
- // Handles DOM Storage related messages.
- scoped_refptr<DOMStorageDispatcherHost> dom_storage_dispatcher_host_;
-
// Handles Indexed Database related messages.
scoped_refptr<IndexedDBDispatcherHost> indexed_db_dispatcher_host_;
@@ -500,6 +497,8 @@
// Handles mime registry requests.
scoped_refptr<MimeRegistryDispatcher> mime_registry_dispatcher_;
+ scoped_refptr<WebKitContext> webkit_context_;
+
DISALLOW_COPY_AND_ASSIGN(ResourceMessageFilter);
};

Powered by Google App Engine
This is Rietveld 408576698