| 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 void OnWmDeactivateWindow(aura::Window* window) override; |
| 184 | 185 |
| 185 // aura::EnvObserver: | 186 // aura::EnvObserver: |
| 186 void OnWindowInitialized(aura::Window* window) override; | 187 void OnWindowInitialized(aura::Window* window) override; |
| 187 | 188 |
| 188 service_manager::Connector* connector_; | 189 service_manager::Connector* connector_; |
| 189 display::mojom::DisplayControllerPtr display_controller_; | 190 display::mojom::DisplayControllerPtr display_controller_; |
| 190 | 191 |
| 191 std::unique_ptr<::wm::FocusController> focus_controller_; | 192 std::unique_ptr<::wm::FocusController> focus_controller_; |
| 192 std::unique_ptr<::wm::WMState> wm_state_; | 193 std::unique_ptr<::wm::WMState> wm_state_; |
| 193 std::unique_ptr<aura::PropertyConverter> property_converter_; | 194 std::unique_ptr<aura::PropertyConverter> property_converter_; |
| (...skipping 24 matching lines...) Expand all Loading... |
| 218 | 219 |
| 219 std::unique_ptr<ScreenPositionController> screen_position_controller_; | 220 std::unique_ptr<ScreenPositionController> screen_position_controller_; |
| 220 | 221 |
| 221 DISALLOW_COPY_AND_ASSIGN(WindowManager); | 222 DISALLOW_COPY_AND_ASSIGN(WindowManager); |
| 222 }; | 223 }; |
| 223 | 224 |
| 224 } // namespace mus | 225 } // namespace mus |
| 225 } // namespace ash | 226 } // namespace ash |
| 226 | 227 |
| 227 #endif // ASH_MUS_WINDOW_MANAGER_H_ | 228 #endif // ASH_MUS_WINDOW_MANAGER_H_ |
| OLD | NEW |