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

Unified Diff: content/public/browser/content_browser_client.h

Issue 8515027: Define the public version of the browser side RenderProcessHost interface. This interface is not ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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
« no previous file with comments | « content/content_tests.gypi ('k') | content/public/browser/render_process_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/content_browser_client.h
===================================================================
--- content/public/browser/content_browser_client.h (revision 110571)
+++ content/public/browser/content_browser_client.h (working copy)
@@ -15,7 +15,6 @@
#include "third_party/WebKit/Source/WebKit/chromium/public/WebNotificationPresenter.h"
class AccessTokenStore;
-class BrowserRenderProcessHost;
class BrowserURLHandler;
class CommandLine;
class DevToolsManager;
@@ -24,7 +23,6 @@
class MHTMLGenerationManager;
class PluginProcessHost;
class QuotaPermissionContext;
-class RenderProcessHost;
class RenderViewHost;
class RenderWidgetHost;
class RenderWidgetHostView;
@@ -42,6 +40,7 @@
class BrowserMainParts;
struct MainFunctionParams;
struct ShowDesktopNotificationHostMsgParams;
+class RenderProcessHost;
}
namespace crypto {
@@ -108,11 +107,11 @@
// Notifies that a new RenderHostView has been created.
virtual void RenderViewHostCreated(RenderViewHost* render_view_host) = 0;
- // Notifies that a BrowserRenderProcessHost has been created. This is called
- // before the content layer adds its own BrowserMessageFilters, so that the
+ // Notifies that a RenderProcessHost has been created. This is called before
+ // the content layer adds its own BrowserMessageFilters, so that the
// embedder's IPC filters have priority.
- virtual void BrowserRenderProcessHostCreated(
- BrowserRenderProcessHost* host) = 0;
+ virtual void RenderProcessHostCreated(
+ content::RenderProcessHost* host) = 0;
// Notifies that a PluginProcessHost has been created. This is called
// before the content layer adds its own message filters, so that the
@@ -138,7 +137,7 @@
// Returns whether a new view for a given |site_url| can be launched in a
// given |process_host|.
- virtual bool IsSuitableHost(RenderProcessHost* process_host,
+ virtual bool IsSuitableHost(content::RenderProcessHost* process_host,
const GURL& site_url) = 0;
// Called when a site instance is first associated with a process.
« no previous file with comments | « content/content_tests.gypi ('k') | content/public/browser/render_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698