Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(840)

Unified Diff: content/browser/renderer_host/browser_render_process_host.h

Issue 6880089: Don't hold the installed app in BrowserProcessRenderHost, since that's in content layer now. Ext... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix browser tests Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/testing_profile.cc ('k') | content/browser/renderer_host/browser_render_process_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « chrome/test/testing_profile.cc ('k') | content/browser/renderer_host/browser_render_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698