| 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_ROOT_WINDOW_CONTROLLER_MUS_H_ | 5 #ifndef ASH_MUS_BRIDGE_WM_ROOT_WINDOW_CONTROLLER_MUS_H_ |
| 6 #define ASH_MUS_BRIDGE_WM_ROOT_WINDOW_CONTROLLER_MUS_H_ | 6 #define ASH_MUS_BRIDGE_WM_ROOT_WINDOW_CONTROLLER_MUS_H_ |
| 7 | 7 |
| 8 #include "ash/common/wm_root_window_controller.h" | 8 #include "ash/common/wm_root_window_controller.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 | 10 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 int shell_container_id, | 59 int shell_container_id, |
| 60 views::Widget::InitParams* init_params) override; | 60 views::Widget::InitParams* init_params) override; |
| 61 WmWindow* FindEventTarget(const gfx::Point& location_in_screen) override; | 61 WmWindow* FindEventTarget(const gfx::Point& location_in_screen) override; |
| 62 gfx::Point GetLastMouseLocationInRoot() override; | 62 gfx::Point GetLastMouseLocationInRoot() override; |
| 63 | 63 |
| 64 private: | 64 private: |
| 65 friend class RootWindowController; | 65 friend class RootWindowController; |
| 66 | 66 |
| 67 WmShellMus* shell_; | 67 WmShellMus* shell_; |
| 68 RootWindowController* root_window_controller_; | 68 RootWindowController* root_window_controller_; |
| 69 base::ObserverList<WmRootWindowControllerObserver> observers_; | |
| 70 | 69 |
| 71 DISALLOW_COPY_AND_ASSIGN(WmRootWindowControllerMus); | 70 DISALLOW_COPY_AND_ASSIGN(WmRootWindowControllerMus); |
| 72 }; | 71 }; |
| 73 | 72 |
| 74 } // namespace mus | 73 } // namespace mus |
| 75 } // namespace ash | 74 } // namespace ash |
| 76 | 75 |
| 77 #endif // ASH_MUS_BRIDGE_WM_ROOT_WINDOW_CONTROLLER_MUS_H_ | 76 #endif // ASH_MUS_BRIDGE_WM_ROOT_WINDOW_CONTROLLER_MUS_H_ |
| OLD | NEW |