| 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_MUS_BRIDGE_WM_WINDOW_MUS_H_ | 5 #ifndef ASH_MUS_BRIDGE_WM_WINDOW_MUS_H_ |
| 6 #define ASH_MUS_BRIDGE_WM_WINDOW_MUS_H_ | 6 #define ASH_MUS_BRIDGE_WM_WINDOW_MUS_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "ash/common/shell_window_ids.h" | 10 #include "ash/common/shell_window_ids.h" |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 void SetRestoreShowState(ui::WindowShowState show_state) override; | 169 void SetRestoreShowState(ui::WindowShowState show_state) override; |
| 170 void SetLockedToRoot(bool value) override; | 170 void SetLockedToRoot(bool value) override; |
| 171 void SetCapture() override; | 171 void SetCapture() override; |
| 172 bool HasCapture() override; | 172 bool HasCapture() override; |
| 173 void ReleaseCapture() override; | 173 void ReleaseCapture() override; |
| 174 bool HasRestoreBounds() const override; | 174 bool HasRestoreBounds() const override; |
| 175 void SetAlwaysOnTop(bool value) override; | 175 void SetAlwaysOnTop(bool value) override; |
| 176 bool IsAlwaysOnTop() const override; | 176 bool IsAlwaysOnTop() const override; |
| 177 void Hide() override; | 177 void Hide() override; |
| 178 void Show() override; | 178 void Show() override; |
| 179 views::Widget* GetWidget() override; |
| 179 void CloseWidget() override; | 180 void CloseWidget() override; |
| 180 bool IsFocused() const override; | 181 bool IsFocused() const override; |
| 181 bool IsActive() const override; | 182 bool IsActive() const override; |
| 182 void Activate() override; | 183 void Activate() override; |
| 183 void Deactivate() override; | 184 void Deactivate() override; |
| 184 void SetFullscreen() override; | 185 void SetFullscreen() override; |
| 185 void Maximize() override; | 186 void Maximize() override; |
| 186 void Minimize() override; | 187 void Minimize() override; |
| 187 void Unminimize() override; | 188 void Unminimize() override; |
| 188 bool CanMaximize() const override; | 189 bool CanMaximize() const override; |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 // resizing easier. | 250 // resizing easier. |
| 250 bool children_use_extended_hit_region_ = false; | 251 bool children_use_extended_hit_region_ = false; |
| 251 | 252 |
| 252 DISALLOW_COPY_AND_ASSIGN(WmWindowMus); | 253 DISALLOW_COPY_AND_ASSIGN(WmWindowMus); |
| 253 }; | 254 }; |
| 254 | 255 |
| 255 } // namespace mus | 256 } // namespace mus |
| 256 } // namespace ash | 257 } // namespace ash |
| 257 | 258 |
| 258 #endif // ASH_MUS_BRIDGE_WM_WINDOW_MUS_H_ | 259 #endif // ASH_MUS_BRIDGE_WM_WINDOW_MUS_H_ |
| OLD | NEW |