| 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_ROOT_CONTROLLER_H_ | 5 #ifndef ASH_COMMON_WM_WM_ROOT_WINDOW_CONTROLLER_H_ |
| 6 #define ASH_WM_COMMON_WM_ROOT_CONTROLLER_H_ | 6 #define ASH_COMMON_WM_WM_ROOT_WINDOW_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ash/wm/common/workspace/workspace_types.h" | 9 #include "ash/common/wm/workspace/workspace_types.h" |
| 10 #include "ui/views/widget/widget.h" | 10 #include "ui/views/widget/widget.h" |
| 11 | 11 |
| 12 namespace gfx { | 12 namespace gfx { |
| 13 class Point; | 13 class Point; |
| 14 } | 14 } |
| 15 | 15 |
| 16 namespace ash { | 16 namespace ash { |
| 17 | 17 |
| 18 class AlwaysOnTopController; | 18 class AlwaysOnTopController; |
| 19 | 19 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 // may extend outside the bounds of the window. | 56 // may extend outside the bounds of the window. |
| 57 virtual WmWindow* FindEventTarget(const gfx::Point& location_in_screen) = 0; | 57 virtual WmWindow* FindEventTarget(const gfx::Point& location_in_screen) = 0; |
| 58 | 58 |
| 59 virtual void AddObserver(WmRootWindowControllerObserver* observer) = 0; | 59 virtual void AddObserver(WmRootWindowControllerObserver* observer) = 0; |
| 60 virtual void RemoveObserver(WmRootWindowControllerObserver* observer) = 0; | 60 virtual void RemoveObserver(WmRootWindowControllerObserver* observer) = 0; |
| 61 }; | 61 }; |
| 62 | 62 |
| 63 } // namespace wm | 63 } // namespace wm |
| 64 } // namespace ash | 64 } // namespace ash |
| 65 | 65 |
| 66 #endif // ASH_WM_COMMON_WM_ROOT_CONTROLLER_H_ | 66 #endif // ASH_COMMON_WM_WM_ROOT_WINDOW_CONTROLLER_H_ |
| OLD | NEW |