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..83525e33e1d560db5ffda50028d93dab3b3c0282 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,15 @@ class ShellWindow : public content::NotificationObserver, |
const content::NotificationDetails& details) OVERRIDE; |
protected: |
- explicit ShellWindow(ExtensionHost* host_); |
+ explicit ShellWindow(PlatformAppHost* host_); |
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 SessionID session_id_; |
- scoped_ptr<ExtensionHost> host_; |
+ scoped_ptr<PlatformAppHost> host_; |
content::NotificationRegistrar registrar_; |
scoped_ptr<ExtensionWindowController> extension_window_controller_; |