| Index: extensions/shell/browser/shell_native_app_window.h
|
| diff --git a/extensions/shell/browser/shell_native_app_window.h b/extensions/shell/browser/shell_native_app_window.h
|
| index 8402050acbad3fbf7b7cba9576733a5474a26743..d86470a92133d2a2ab3ca62b8e1af9b5f2622b06 100644
|
| --- a/extensions/shell/browser/shell_native_app_window.h
|
| +++ b/extensions/shell/browser/shell_native_app_window.h
|
| @@ -17,25 +17,19 @@ class ShellNativeAppWindow : public NativeAppWindow {
|
| const AppWindow::CreateParams& params);
|
| ~ShellNativeAppWindow() override;
|
|
|
| + AppWindow* app_window() const { return app_window_; }
|
| +
|
| // ui::BaseView overrides:
|
| - bool IsActive() const override;
|
| bool IsMaximized() const override;
|
| bool IsMinimized() const override;
|
| bool IsFullscreen() const override;
|
| - gfx::NativeWindow GetNativeWindow() const override;
|
| gfx::Rect GetRestoredBounds() const override;
|
| ui::WindowShowState GetRestoredState() const override;
|
| - gfx::Rect GetBounds() const override;
|
| - void Show() override;
|
| - void Hide() override;
|
| void ShowInactive() override;
|
| void Close() override;
|
| - void Activate() override;
|
| - void Deactivate() override;
|
| void Maximize() override;
|
| void Minimize() override;
|
| void Restore() override;
|
| - void SetBounds(const gfx::Rect& bounds) override;
|
| void FlashFrame(bool flash) override;
|
| bool IsAlwaysOnTop() const override;
|
| void SetAlwaysOnTop(bool always_on_top) override;
|
| @@ -77,8 +71,6 @@ class ShellNativeAppWindow : public NativeAppWindow {
|
| bool CanHaveAlphaEnabled() const override;
|
|
|
| private:
|
| - aura::Window* GetWindow() const;
|
| -
|
| AppWindow* app_window_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(ShellNativeAppWindow);
|
|
|