| Index: chrome/browser/ui/extensions/shell_window.h
|
| diff --git a/chrome/browser/ui/extensions/shell_window.h b/chrome/browser/ui/extensions/shell_window.h
|
| index 90cc69202d249ceb196506370432dabf3bf3f0ed..03b30580628e06501645fc2f29b39e97b689c9b8 100644
|
| --- a/chrome/browser/ui/extensions/shell_window.h
|
| +++ b/chrome/browser/ui/extensions/shell_window.h
|
| @@ -7,14 +7,13 @@
|
| #pragma once
|
|
|
| #include "base/memory/scoped_ptr.h"
|
| +#include "chrome/browser/extensions/platform_app_host.h"
|
| #include "chrome/browser/sessions/session_id.h"
|
| -#include "chrome/browser/extensions/extension_host.h"
|
| #include "chrome/browser/ui/base_window.h"
|
| #include "content/public/browser/notification_observer.h"
|
| #include "content/public/browser/notification_registrar.h"
|
|
|
| class Extension;
|
| -class ExtensionHost;
|
| class ExtensionWindowController;
|
| class GURL;
|
| class Profile;
|
| @@ -42,15 +41,17 @@ class ShellWindow : public content::NotificationObserver,
|
| const content::NotificationDetails& details) OVERRIDE;
|
|
|
| protected:
|
| - explicit ShellWindow(ExtensionHost* host_);
|
| + ShellWindow(PlatformAppHost* host_, const Extension* extension);
|
| virtual ~ShellWindow();
|
|
|
| // Instantiates a platform-specific ShellWindow subclass (one implementation
|
| // per platform). Public users of ShellWindow should use ShellWindow::Create.
|
| - static ShellWindow* CreateShellWindow(ExtensionHost* host);
|
| + static ShellWindow* CreateShellWindow(PlatformAppHost* host,
|
| + const Extension* extension);
|
|
|
| const SessionID session_id_;
|
| - scoped_ptr<ExtensionHost> host_;
|
| + scoped_ptr<PlatformAppHost> host_;
|
| + const Extension* extension_;
|
| content::NotificationRegistrar registrar_;
|
| scoped_ptr<ExtensionWindowController> extension_window_controller_;
|
|
|
|
|