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

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
Index: content/public/browser/content_browser_client.h
===================================================================
--- content/public/browser/content_browser_client.h (revision 110303)
+++ content/public/browser/content_browser_client.h (working copy)
@@ -15,7 +15,7 @@
#include "third_party/WebKit/Source/WebKit/chromium/public/WebNotificationPresenter.h"
class AccessTokenStore;
-class BrowserRenderProcessHost;
+class RenderProcessHost;
class BrowserURLHandler;
class CommandLine;
class DevToolsManager;
@@ -108,11 +108,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(
+ 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

Powered by Google App Engine
This is Rietveld 408576698