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 |