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

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

Issue 9150016: Move creation and ownership of ResourceDispatcherHost and PluginService to content. This gives a ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix chromeos ui_tests Created 8 years, 11 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/renderer_host/resource_message_filter.h
===================================================================
--- content/browser/renderer_host/resource_message_filter.h (revision 117096)
+++ content/browser/renderer_host/resource_message_filter.h (working copy)
@@ -11,8 +11,6 @@
#include "content/public/common/process_type.h"
#include "webkit/glue/resource_type.h"
-class ResourceDispatcherHost;
-
namespace content {
class ResourceContext;
} // namespace content
@@ -42,11 +40,11 @@
DISALLOW_COPY_AND_ASSIGN(URLRequestContextSelector);
};
- ResourceMessageFilter(int child_id,
- content::ProcessType process_type,
- const content::ResourceContext* resource_context,
- URLRequestContextSelector* url_request_context_selector,
- ResourceDispatcherHost* resource_dispatcher_host);
+ ResourceMessageFilter(
+ int child_id,
+ content::ProcessType process_type,
+ const content::ResourceContext* resource_context,
+ URLRequestContextSelector* url_request_context_selector);
// content::BrowserMessageFilter implementation.
virtual void OnChannelClosing() OVERRIDE;
@@ -79,9 +77,6 @@
const scoped_ptr<URLRequestContextSelector> url_request_context_selector_;
- // Owned by BrowserProcess, which is guaranteed to outlive us.
- ResourceDispatcherHost* resource_dispatcher_host_;
-
DISALLOW_IMPLICIT_CONSTRUCTORS(ResourceMessageFilter);
};

Powered by Google App Engine
This is Rietveld 408576698