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

Unified Diff: chrome/browser/extensions/extension_process_manager.h

Issue 8985008: Don't use browser windows for platform app shell windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add view type, handle window closing. Created 9 years 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
Index: chrome/browser/extensions/extension_process_manager.h
diff --git a/chrome/browser/extensions/extension_process_manager.h b/chrome/browser/extensions/extension_process_manager.h
index 655385803ade323bfa4d73aab6a8fd41490257f7..246f2d2684aeb58079e03878dd1c8d82a7eb5ffb 100644
--- a/chrome/browser/extensions/extension_process_manager.h
+++ b/chrome/browser/extensions/extension_process_manager.h
@@ -33,6 +33,8 @@ class ExtensionProcessManager : public content::NotificationObserver {
static ExtensionProcessManager* Create(Profile* profile);
virtual ~ExtensionProcessManager();
+ ExtensionHost* CreateShellHost(const Extension* extension, const GURL& url);
+
// Creates a new ExtensionHost with its associated view, grouping it in the
// appropriate SiteInstance (and therefore process) based on the URL and
// profile.
@@ -54,6 +56,8 @@ class ExtensionProcessManager : public content::NotificationObserver {
ExtensionHost* CreateInfobarHost(const GURL& url,
Browser* browser);
+ ExtensionHost* CreateShellHost(const GURL& url, Browser* browser);
+
// Open the extension's options page.
void OpenOptionsPage(const Extension* extension, Browser* browser);

Powered by Google App Engine
This is Rietveld 408576698