| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef ASH_AURA_WM_WINDOW_AURA_H_ | 5 #ifndef ASH_AURA_WM_WINDOW_AURA_H_ |
| 6 #define ASH_AURA_WM_WINDOW_AURA_H_ | 6 #define ASH_AURA_WM_WINDOW_AURA_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ash/common/wm_window.h" | 9 #include "ash/common/wm_window.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 bool CanResize() const override; | 121 bool CanResize() const override; |
| 122 bool CanActivate() const override; | 122 bool CanActivate() const override; |
| 123 void StackChildAtTop(WmWindow* child) override; | 123 void StackChildAtTop(WmWindow* child) override; |
| 124 void StackChildAtBottom(WmWindow* child) override; | 124 void StackChildAtBottom(WmWindow* child) override; |
| 125 void StackChildAbove(WmWindow* child, WmWindow* target) override; | 125 void StackChildAbove(WmWindow* child, WmWindow* target) override; |
| 126 void StackChildBelow(WmWindow* child, WmWindow* target) override; | 126 void StackChildBelow(WmWindow* child, WmWindow* target) override; |
| 127 void SetAlwaysOnTop(bool value) override; | 127 void SetAlwaysOnTop(bool value) override; |
| 128 bool IsAlwaysOnTop() const override; | 128 bool IsAlwaysOnTop() const override; |
| 129 void Hide() override; | 129 void Hide() override; |
| 130 void Show() override; | 130 void Show() override; |
| 131 views::Widget* GetWidget() override; |
| 131 void CloseWidget() override; | 132 void CloseWidget() override; |
| 132 bool IsFocused() const override; | 133 bool IsFocused() const override; |
| 133 bool IsActive() const override; | 134 bool IsActive() const override; |
| 134 void Activate() override; | 135 void Activate() override; |
| 135 void Deactivate() override; | 136 void Deactivate() override; |
| 136 void SetFullscreen() override; | 137 void SetFullscreen() override; |
| 137 void Maximize() override; | 138 void Maximize() override; |
| 138 void Minimize() override; | 139 void Minimize() override; |
| 139 void Unminimize() override; | 140 void Unminimize() override; |
| 140 std::vector<WmWindow*> GetChildren() override; | 141 std::vector<WmWindow*> GetChildren() override; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 168 aura::Window* window_; | 169 aura::Window* window_; |
| 169 | 170 |
| 170 base::ObserverList<WmWindowObserver> observers_; | 171 base::ObserverList<WmWindowObserver> observers_; |
| 171 | 172 |
| 172 DISALLOW_COPY_AND_ASSIGN(WmWindowAura); | 173 DISALLOW_COPY_AND_ASSIGN(WmWindowAura); |
| 173 }; | 174 }; |
| 174 | 175 |
| 175 } // namespace ash | 176 } // namespace ash |
| 176 | 177 |
| 177 #endif // ASH_AURA_WM_WINDOW_AURA_H_ | 178 #endif // ASH_AURA_WM_WINDOW_AURA_H_ |
| OLD | NEW |