| Index: content/browser/renderer_host/browser_render_process_host.h
|
| ===================================================================
|
| --- content/browser/renderer_host/browser_render_process_host.h (revision 82593)
|
| +++ content/browser/renderer_host/browser_render_process_host.h (working copy)
|
| @@ -53,12 +53,6 @@
|
| explicit BrowserRenderProcessHost(Profile* profile);
|
| ~BrowserRenderProcessHost();
|
|
|
| - // Whether this process is associated with an installed app.
|
| - const Extension* installed_app() const { return installed_app_; }
|
| - void set_installed_app(const Extension* installed_app) {
|
| - installed_app_ = installed_app;
|
| - }
|
| -
|
| // RenderProcessHost implementation (public portion).
|
| virtual bool Init(bool is_accessibility_enabled, bool is_extensions_process);
|
| virtual int GetNextRoutingID();
|
| @@ -206,9 +200,6 @@
|
| // when running in single-process mode.
|
| bool extension_process_;
|
|
|
| - // The Extension for the hosted or packaged app if any, NULL otherwise.
|
| - scoped_refptr<const Extension> installed_app_;
|
| -
|
| // Used to launch and terminate the process without blocking the UI thread.
|
| scoped_ptr<ChildProcessLauncher> child_process_;
|
|
|
|
|