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

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: get rid of _DELAY_HANDLE macro 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 69012)
+++ 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"
@@ -33,7 +34,6 @@
class ChromeURLRequestContext;
class DatabaseDispatcherHost;
-class DOMStorageDispatcherHost;
struct FontDescriptor;
class GeolocationDispatcherHostOld;
class HostZoomMap;
@@ -431,9 +431,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_;
@@ -463,6 +460,8 @@
// Used to handle geolocation-related messages.
scoped_refptr<GeolocationDispatcherHostOld> geolocation_dispatcher_host_;
+ scoped_refptr<WebKitContext> webkit_context_;
+
DISALLOW_COPY_AND_ASSIGN(ResourceMessageFilter);
};

Powered by Google App Engine
This is Rietveld 408576698