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

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

Issue 5698008: Switch a bunch of remaining filters to derive from BrowserMessageFilters so t... (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 68877)
+++ chrome/browser/renderer_host/resource_message_filter.h (working copy)
@@ -31,22 +31,17 @@
#include "third_party/WebKit/WebKit/chromium/public/WebCache.h"
#include "third_party/WebKit/WebKit/chromium/public/WebPopupType.h"
-class BlobDispatcherHost;
class ChromeURLRequestContext;
class DatabaseDispatcherHost;
class DOMStorageDispatcherHost;
-class FileSystemDispatcherHost;
-class FileUtilitiesDispatcherHost;
struct FontDescriptor;
class GeolocationDispatcherHostOld;
class HostZoomMap;
class IndexedDBDispatcherHost;
-class MimeRegistryDispatcher;
class NotificationsPrefsCache;
class PpapiPluginProcessHost;
class Profile;
class RenderWidgetHelper;
-class SearchProviderInstallStateDispatcherHost;
class URLRequestContextGetter;
struct ViewHostMsg_CreateWindow_Params;
struct ViewHostMsg_CreateWorker_Params;
@@ -57,10 +52,6 @@
class SharedMemory;
}
-namespace device_orientation {
-class DispatcherHost;
-}
-
namespace net {
class CookieStore;
}
@@ -70,10 +61,6 @@
class PrintJobManager;
}
-namespace speech_input {
-class SpeechInputDispatcherHost;
-}
-
namespace webkit_glue {
struct WebCookie;
}
@@ -473,33 +460,9 @@
// A callback to create a routing id for the associated renderer process.
scoped_ptr<CallbackWithReturnValue<int>::Type> next_route_id_callback_;
- // Used to handle speech input related messages.
- scoped_refptr<speech_input::SpeechInputDispatcherHost>
- speech_input_dispatcher_host_;
-
// Used to handle geolocation-related messages.
scoped_refptr<GeolocationDispatcherHostOld> geolocation_dispatcher_host_;
- // Used to handle search provider related messages.
- scoped_ptr<SearchProviderInstallStateDispatcherHost>
- search_provider_install_state_dispatcher_host_;
-
- // Used to handle device orientation related messages.
- scoped_refptr<device_orientation::DispatcherHost>
- device_orientation_dispatcher_host_;
-
- // Handles FileSystem API related messages
- scoped_refptr<FileSystemDispatcherHost> file_system_dispatcher_host_;
-
- // Handles blob related messages.
- scoped_ptr<BlobDispatcherHost> blob_dispatcher_host_;
-
- // Handles file utilities messages.
- scoped_refptr<FileUtilitiesDispatcherHost> file_utilities_dispatcher_host_;
-
- // Handles mime registry requests.
- scoped_refptr<MimeRegistryDispatcher> mime_registry_dispatcher_;
-
DISALLOW_COPY_AND_ASSIGN(ResourceMessageFilter);
};
« no previous file with comments | « chrome/browser/renderer_host/file_utilities_message_filter.cc ('k') | chrome/browser/renderer_host/resource_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698