| 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* GetInternalWidget() 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 void SetExcludedFromMru(bool excluded_from_mru) override; | 141 void SetExcludedFromMru(bool excluded_from_mru) override; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 169 aura::Window* window_; | 170 aura::Window* window_; |
| 170 | 171 |
| 171 base::ObserverList<WmWindowObserver> observers_; | 172 base::ObserverList<WmWindowObserver> observers_; |
| 172 | 173 |
| 173 DISALLOW_COPY_AND_ASSIGN(WmWindowAura); | 174 DISALLOW_COPY_AND_ASSIGN(WmWindowAura); |
| 174 }; | 175 }; |
| 175 | 176 |
| 176 } // namespace ash | 177 } // namespace ash |
| 177 | 178 |
| 178 #endif // ASH_AURA_WM_WINDOW_AURA_H_ | 179 #endif // ASH_AURA_WM_WINDOW_AURA_H_ |
| OLD | NEW |