| 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_WM_COMMON_WM_WINDOW_H_ | 5 #ifndef ASH_WM_COMMON_WM_WINDOW_H_ |
| 6 #define ASH_WM_COMMON_WM_WINDOW_H_ | 6 #define ASH_WM_COMMON_WM_WINDOW_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "ash/wm/common/ash_wm_common_export.h" | 11 #include "ash/wm/common/ash_wm_common_export.h" |
| 12 #include "base/time/time.h" | 12 #include "base/time/time.h" |
| 13 #include "ui/base/ui_base_types.h" | 13 #include "ui/base/ui_base_types.h" |
| 14 #include "ui/wm/core/window_animations.h" | 14 #include "ui/wm/core/window_animations.h" |
| 15 #include "ui/wm/public/window_types.h" | 15 #include "ui/wm/public/window_types.h" |
| 16 | 16 |
| 17 namespace display { |
| 18 class Display; |
| 19 } |
| 20 |
| 17 namespace gfx { | 21 namespace gfx { |
| 18 class Display; | |
| 19 class Point; | 22 class Point; |
| 20 class Rect; | 23 class Rect; |
| 21 class Size; | 24 class Size; |
| 22 } | 25 } |
| 23 | 26 |
| 24 namespace display { | |
| 25 using Display = gfx::Display; | |
| 26 } | |
| 27 | |
| 28 namespace ui { | 27 namespace ui { |
| 29 class Layer; | 28 class Layer; |
| 30 } | 29 } |
| 31 | 30 |
| 32 namespace ash { | 31 namespace ash { |
| 33 namespace wm { | 32 namespace wm { |
| 34 | 33 |
| 35 class WMEvent; | 34 class WMEvent; |
| 36 class WmGlobals; | 35 class WmGlobals; |
| 37 class WmLayoutManager; | 36 class WmLayoutManager; |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 virtual void RemoveObserver(WmWindowObserver* observer) = 0; | 195 virtual void RemoveObserver(WmWindowObserver* observer) = 0; |
| 197 | 196 |
| 198 protected: | 197 protected: |
| 199 virtual ~WmWindow() {} | 198 virtual ~WmWindow() {} |
| 200 }; | 199 }; |
| 201 | 200 |
| 202 } // namespace wm | 201 } // namespace wm |
| 203 } // namespace ash | 202 } // namespace ash |
| 204 | 203 |
| 205 #endif // ASH_WM_COMMON_WM_WINDOW_H_ | 204 #endif // ASH_WM_COMMON_WM_WINDOW_H_ |
| OLD | NEW |