| Index: chrome/browser/renderer_host/render_process_host.h
|
| diff --git a/chrome/browser/renderer_host/render_process_host.h b/chrome/browser/renderer_host/render_process_host.h
|
| index 1e8523b9e4b98659bb38191df4a5aae0371ec030..187d2897b151acdae72d4e3b56da842d2acc083e 100644
|
| --- a/chrome/browser/renderer_host/render_process_host.h
|
| +++ b/chrome/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;
|
| @@ -154,7 +155,8 @@ class RenderProcessHost : public IPC::Channel::Sender,
|
| // 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;
|
| + bool is_accessibility_enabled, bool is_extensions_process,
|
| + const Extension* installed_app) = 0;
|
|
|
| // Gets the next available routing id.
|
| virtual int GetNextRoutingID() = 0;
|
|
|