Index: content/browser/renderer_host/render_process_host.h |
diff --git a/content/browser/renderer_host/render_process_host.h b/content/browser/renderer_host/render_process_host.h |
index cc469fa5a07a15a3d8ede4df18886e9af3c7cd03..8eb91a9077b5cf42e6c02037cec19c75bbc1af07 100644 |
--- a/content/browser/renderer_host/render_process_host.h |
+++ b/content/browser/renderer_host/render_process_host.h |
@@ -17,6 +17,7 @@ |
#include "chrome/common/visitedlink_common.h" |
#include "ipc/ipc_sync_channel.h" |
+class Extension; |
class Profile; |
class URLRequestContextGetter; |
struct ViewMsg_ClosePage_Params; |
@@ -153,8 +154,9 @@ class RenderProcessHost : public IPC::Channel::Sender, |
// be called once before the object can be used, but can be called after |
// that with no effect. Therefore, if the caller isn't sure about whether |
// the process has been created, it should just call Init(). |
- virtual bool Init( |
- bool is_accessibility_enabled, bool is_extensions_process) = 0; |
+ virtual bool Init(bool is_accessibility_enabled, |
+ bool is_extensions_process, |
+ const Extension* installed_app) = 0; |
// Gets the next available routing id. |
virtual int GetNextRoutingID() = 0; |