Index: content/browser/content_browser_client.h |
=================================================================== |
--- content/browser/content_browser_client.h (revision 85048) |
+++ content/browser/content_browser_client.h (working copy) |
@@ -34,10 +34,14 @@ |
// Notifies that a new RenderHostView has been created. |
virtual void RenderViewHostCreated(RenderViewHost* render_view_host); |
- // Notifies that a BrowserRenderProcessHost has been created. |
+ // Notifies that a BrowserRenderProcessHost 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); |
- // Notifies that a WorkerProcessHost has been created. |
+ // Notifies that a WorkerProcessHost has been created. This is called |
+ // before the content layer adds its own message filters, so that the |
+ // embedder's IPC filters have priority. |
virtual void WorkerProcessHostCreated(WorkerProcessHost* host); |
// Gets the WebUIFactory which will be responsible for generating WebUIs. |