| 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..3f1f56635bf6881fae391edcb88fcea2a41a8847 100644
|
| --- a/chrome/browser/extensions/extension_process_manager.h
|
| +++ b/chrome/browser/extensions/extension_process_manager.h
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -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);
|
|
|
|
|