Index: content/browser/browser_child_process_host.h |
diff --git a/content/browser/browser_child_process_host.h b/content/browser/browser_child_process_host.h |
index 2010a79229166d3642c76766463f50536d563be7..dd1c4ff1bc43f9c3d2c5de0fd9f3e64e64fab6a0 100644 |
--- a/content/browser/browser_child_process_host.h |
+++ b/content/browser/browser_child_process_host.h |
@@ -9,7 +9,6 @@ |
#include <list> |
#include "content/browser/child_process_launcher.h" |
-#include "content/browser/renderer_host/resource_message_filter.h" |
#include "content/common/child_process_host.h" |
#include "content/common/child_process_info.h" |
@@ -57,16 +56,6 @@ class BrowserChildProcessHost : public ChildProcessHost, |
}; |
protected: |
- // |resource_dispatcher_host| may be NULL to indicate none is needed for |
- // this process type. |
- // |url_request_context_getter| allows derived classes to override the |
- // net::URLRequestContext. |
- BrowserChildProcessHost( |
- ChildProcessInfo::ProcessType type, |
- ResourceDispatcherHost* resource_dispatcher_host, |
- ResourceMessageFilter::URLRequestContextOverride* |
- url_request_context_override); |
- |
// A convenient constructor for those classes that want to use the default |
// net::URLRequestContext. |
BrowserChildProcessHost( |
@@ -121,9 +110,6 @@ class BrowserChildProcessHost : public ChildProcessHost, |
} |
private: |
- void Initialize(ResourceMessageFilter::URLRequestContextOverride* |
- url_request_context_override); |
- |
// By using an internal class as the ChildProcessLauncher::Client, we can |
// intercept OnProcessLaunched and do our own processing before |
// calling the subclass' implementation. |