| 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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 const gfx::Rect& old_bounds, | 267 const gfx::Rect& old_bounds, |
| 268 const gfx::Rect& new_bounds) override; | 268 const gfx::Rect& new_bounds) override; |
| 269 void OnWindowClientAreaChanged( | 269 void OnWindowClientAreaChanged( |
| 270 ServerWindow* window, | 270 ServerWindow* window, |
| 271 const gfx::Insets& new_client_area, | 271 const gfx::Insets& new_client_area, |
| 272 const std::vector<gfx::Rect>& new_additional_client_areas) override; | 272 const std::vector<gfx::Rect>& new_additional_client_areas) override; |
| 273 void OnWindowReordered(ServerWindow* window, | 273 void OnWindowReordered(ServerWindow* window, |
| 274 ServerWindow* relative, | 274 ServerWindow* relative, |
| 275 mojom::OrderDirection direction) override; | 275 mojom::OrderDirection direction) override; |
| 276 void OnWillChangeWindowVisibility(ServerWindow* window) override; | 276 void OnWillChangeWindowVisibility(ServerWindow* window) override; |
| 277 void OnWindowVisibilityChanged(ServerWindow* window) override; |
| 277 void OnWindowSharedPropertyChanged( | 278 void OnWindowSharedPropertyChanged( |
| 278 ServerWindow* window, | 279 ServerWindow* window, |
| 279 const std::string& name, | 280 const std::string& name, |
| 280 const std::vector<uint8_t>* new_data) override; | 281 const std::vector<uint8_t>* new_data) override; |
| 281 void OnWindowPredefinedCursorChanged(ServerWindow* window, | 282 void OnWindowPredefinedCursorChanged(ServerWindow* window, |
| 282 int32_t cursor_id) override; | 283 int32_t cursor_id) override; |
| 283 void OnWindowTextInputStateChanged(ServerWindow* window, | 284 void OnWindowTextInputStateChanged(ServerWindow* window, |
| 284 const ui::TextInputState& state) override; | 285 const ui::TextInputState& state) override; |
| 285 void OnTransientWindowAdded(ServerWindow* window, | 286 void OnTransientWindowAdded(ServerWindow* window, |
| 286 ServerWindow* transient_child) override; | 287 ServerWindow* transient_child) override; |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 | 334 |
| 334 scoped_ptr<WindowManagerFactoryService> window_manager_factory_service_; | 335 scoped_ptr<WindowManagerFactoryService> window_manager_factory_service_; |
| 335 | 336 |
| 336 DISALLOW_COPY_AND_ASSIGN(ConnectionManager); | 337 DISALLOW_COPY_AND_ASSIGN(ConnectionManager); |
| 337 }; | 338 }; |
| 338 | 339 |
| 339 } // namespace ws | 340 } // namespace ws |
| 340 } // namespace mus | 341 } // namespace mus |
| 341 | 342 |
| 342 #endif // COMPONENTS_MUS_WS_CONNECTION_MANAGER_H_ | 343 #endif // COMPONENTS_MUS_WS_CONNECTION_MANAGER_H_ |
| OLD | NEW |