| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_WINDOW_MANAGER_H_ | 5 #ifndef ASH_MUS_WINDOW_MANAGER_H_ |
| 6 #define ASH_MUS_WINDOW_MANAGER_H_ | 6 #define ASH_MUS_WINDOW_MANAGER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 ui::mojom::MoveLoopSource source, | 174 ui::mojom::MoveLoopSource source, |
| 175 const gfx::Point& cursor_location, | 175 const gfx::Point& cursor_location, |
| 176 const base::Callback<void(bool)>& on_done) override; | 176 const base::Callback<void(bool)>& on_done) override; |
| 177 void OnWmCancelMoveLoop(aura::Window* window) override; | 177 void OnWmCancelMoveLoop(aura::Window* window) override; |
| 178 ui::mojom::EventResult OnAccelerator(uint32_t id, | 178 ui::mojom::EventResult OnAccelerator(uint32_t id, |
| 179 const ui::Event& event) override; | 179 const ui::Event& event) override; |
| 180 void OnWmSetClientArea( | 180 void OnWmSetClientArea( |
| 181 aura::Window* window, | 181 aura::Window* window, |
| 182 const gfx::Insets& insets, | 182 const gfx::Insets& insets, |
| 183 const std::vector<gfx::Rect>& additional_client_areas) override; | 183 const std::vector<gfx::Rect>& additional_client_areas) override; |
| 184 bool IsWindowActive(aura::Window* window) override; |
| 185 void OnWmDeactivateWindow(aura::Window* window) override; |
| 184 | 186 |
| 185 service_manager::Connector* connector_; | 187 service_manager::Connector* connector_; |
| 186 display::mojom::DisplayControllerPtr display_controller_; | 188 display::mojom::DisplayControllerPtr display_controller_; |
| 187 | 189 |
| 188 std::unique_ptr<::wm::FocusController> focus_controller_; | 190 std::unique_ptr<::wm::FocusController> focus_controller_; |
| 189 std::unique_ptr<::wm::WMState> wm_state_; | 191 std::unique_ptr<::wm::WMState> wm_state_; |
| 190 std::unique_ptr<aura::PropertyConverter> property_converter_; | 192 std::unique_ptr<aura::PropertyConverter> property_converter_; |
| 191 | 193 |
| 192 std::unique_ptr<aura::WindowTreeClient> window_tree_client_; | 194 std::unique_ptr<aura::WindowTreeClient> window_tree_client_; |
| 193 | 195 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 215 | 217 |
| 216 std::unique_ptr<ScreenPositionController> screen_position_controller_; | 218 std::unique_ptr<ScreenPositionController> screen_position_controller_; |
| 217 | 219 |
| 218 DISALLOW_COPY_AND_ASSIGN(WindowManager); | 220 DISALLOW_COPY_AND_ASSIGN(WindowManager); |
| 219 }; | 221 }; |
| 220 | 222 |
| 221 } // namespace mus | 223 } // namespace mus |
| 222 } // namespace ash | 224 } // namespace ash |
| 223 | 225 |
| 224 #endif // ASH_MUS_WINDOW_MANAGER_H_ | 226 #endif // ASH_MUS_WINDOW_MANAGER_H_ |
| OLD | NEW |