| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 COMPONENTS_MUS_WS_CONNECTION_MANAGER_H_ | 5 #ifndef COMPONENTS_MUS_WS_CONNECTION_MANAGER_H_ |
| 6 #define COMPONENTS_MUS_WS_CONNECTION_MANAGER_H_ | 6 #define COMPONENTS_MUS_WS_CONNECTION_MANAGER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 const gfx::Rect& old_bounds, | 233 const gfx::Rect& old_bounds, |
| 234 const gfx::Rect& new_bounds) override; | 234 const gfx::Rect& new_bounds) override; |
| 235 void OnWindowClientAreaChanged( | 235 void OnWindowClientAreaChanged( |
| 236 ServerWindow* window, | 236 ServerWindow* window, |
| 237 const gfx::Insets& new_client_area, | 237 const gfx::Insets& new_client_area, |
| 238 const std::vector<gfx::Rect>& new_additional_client_areas) override; | 238 const std::vector<gfx::Rect>& new_additional_client_areas) override; |
| 239 void OnWindowReordered(ServerWindow* window, | 239 void OnWindowReordered(ServerWindow* window, |
| 240 ServerWindow* relative, | 240 ServerWindow* relative, |
| 241 mojom::OrderDirection direction) override; | 241 mojom::OrderDirection direction) override; |
| 242 void OnWillChangeWindowVisibility(ServerWindow* window) override; | 242 void OnWillChangeWindowVisibility(ServerWindow* window) override; |
| 243 void OnWindowVisibilityChanged(ServerWindow* window) override; |
| 243 void OnWindowSharedPropertyChanged( | 244 void OnWindowSharedPropertyChanged( |
| 244 ServerWindow* window, | 245 ServerWindow* window, |
| 245 const std::string& name, | 246 const std::string& name, |
| 246 const std::vector<uint8_t>* new_data) override; | 247 const std::vector<uint8_t>* new_data) override; |
| 247 void OnWindowPredefinedCursorChanged(ServerWindow* window, | 248 void OnWindowPredefinedCursorChanged(ServerWindow* window, |
| 248 int32_t cursor_id) override; | 249 int32_t cursor_id) override; |
| 249 void OnWindowTextInputStateChanged(ServerWindow* window, | 250 void OnWindowTextInputStateChanged(ServerWindow* window, |
| 250 const ui::TextInputState& state) override; | 251 const ui::TextInputState& state) override; |
| 251 void OnTransientWindowAdded(ServerWindow* window, | 252 void OnTransientWindowAdded(ServerWindow* window, |
| 252 ServerWindow* transient_child) override; | 253 ServerWindow* transient_child) override; |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 | 288 |
| 288 WindowManagerFactoryRegistry window_manager_factory_registry_; | 289 WindowManagerFactoryRegistry window_manager_factory_registry_; |
| 289 | 290 |
| 290 DISALLOW_COPY_AND_ASSIGN(ConnectionManager); | 291 DISALLOW_COPY_AND_ASSIGN(ConnectionManager); |
| 291 }; | 292 }; |
| 292 | 293 |
| 293 } // namespace ws | 294 } // namespace ws |
| 294 } // namespace mus | 295 } // namespace mus |
| 295 | 296 |
| 296 #endif // COMPONENTS_MUS_WS_CONNECTION_MANAGER_H_ | 297 #endif // COMPONENTS_MUS_WS_CONNECTION_MANAGER_H_ |
| OLD | NEW |