| Index: chrome/browser/ui/views/ash/panel_view_aura.h
|
| diff --git a/chrome/browser/ui/views/ash/panel_view_aura.h b/chrome/browser/ui/views/ash/panel_view_aura.h
|
| index c92bacfc189df82166385fa8dc6ee01d3a8ff219..dbe36d7984a8b41180c65689bf2569fc249b1f6f 100644
|
| --- a/chrome/browser/ui/views/ash/panel_view_aura.h
|
| +++ b/chrome/browser/ui/views/ash/panel_view_aura.h
|
| @@ -14,7 +14,6 @@
|
| #include "ui/views/controls/native/native_view_host.h"
|
| #include "ui/views/widget/widget_delegate.h"
|
|
|
| -class ExtensionWindowController;
|
| class GURL;
|
| class Profile;
|
|
|
| @@ -22,6 +21,10 @@ namespace content {
|
| class WebContents;
|
| }
|
|
|
| +namespace extensions {
|
| +class WindowController;
|
| +}
|
| +
|
| namespace views {
|
| class Widget;
|
| }
|
| @@ -54,7 +57,7 @@ class PanelViewAura : public views::NativeViewHost,
|
| void SetContentPreferredSize(const gfx::Size& size);
|
|
|
| const SessionID& session_id() const { return session_id_; }
|
| - ExtensionWindowController* extension_window_controller() const {
|
| + extensions::WindowController* extension_window_controller() const {
|
| return extension_window_controller_.get();
|
| }
|
|
|
| @@ -101,7 +104,7 @@ class PanelViewAura : public views::NativeViewHost,
|
| scoped_ptr<internal::PanelHost> host_;
|
| // Unowned pointer to the widget.
|
| views::Widget* widget_;
|
| - scoped_ptr<ExtensionWindowController> extension_window_controller_;
|
| + scoped_ptr<extensions::WindowController> extension_window_controller_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(PanelViewAura);
|
| };
|
|
|