summaryrefslogtreecommitdiffstats
path: root/chrome/browser/plugin_process_host.h
diff options
context:
space:
mode:
authorsanjeevr@chromium.org <sanjeevr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-03 05:47:42 +0000
committersanjeevr@chromium.org <sanjeevr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-03 05:47:42 +0000
commitd27893f65dbd01a0d88dcda2a69f518e4b8a636d (patch)
tree7b0573f1158681243b6605bd9f67521c9ee3193c /chrome/browser/plugin_process_host.h
parentdfe7f3288af471067ecd9117049e96aa39778da9 (diff)
downloadchromium_src-d27893f65dbd01a0d88dcda2a69f518e4b8a636d.zip
chromium_src-d27893f65dbd01a0d88dcda2a69f518e4b8a636d.tar.gz
chromium_src-d27893f65dbd01a0d88dcda2a69f518e4b8a636d.tar.bz2
Moved common parts of ChildProcessHost into chrome/common and created a BrowserChildProcessHost with browser-specific implementation. This is in preparation of creating a ServiceChildProcessHost.
BUG=None TEST=Test for regressions . Review URL: http://codereview.chromium.org/2885017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51593 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/plugin_process_host.h')
-rw-r--r--chrome/browser/plugin_process_host.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/plugin_process_host.h b/chrome/browser/plugin_process_host.h
index 3f7e661..a9c8bb6 100644
--- a/chrome/browser/plugin_process_host.h
+++ b/chrome/browser/plugin_process_host.h
@@ -15,7 +15,7 @@
#include "base/basictypes.h"
#include "base/scoped_ptr.h"
#include "base/task.h"
-#include "chrome/browser/child_process_host.h"
+#include "chrome/browser/browser_child_process_host.h"
#include "chrome/browser/net/resolve_proxy_msg_helper.h"
#include "chrome/browser/renderer_host/resource_message_filter.h"
#include "gfx/native_widget_types.h"
@@ -34,7 +34,7 @@ class GURL;
// starting the plugin process when a plugin is created that doesn't already
// have a process. After that, most of the communication is directly between
// the renderer and plugin processes.
-class PluginProcessHost : public ChildProcessHost,
+class PluginProcessHost : public BrowserChildProcessHost,
public ResolveProxyMsgHelper::Delegate {
public:
PluginProcessHost();