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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 const gfx::Rect& old_bounds, | 235 const gfx::Rect& old_bounds, |
236 const gfx::Rect& new_bounds) override; | 236 const gfx::Rect& new_bounds) override; |
237 void OnWindowClientAreaChanged( | 237 void OnWindowClientAreaChanged( |
238 ServerWindow* window, | 238 ServerWindow* window, |
239 const gfx::Insets& new_client_area, | 239 const gfx::Insets& new_client_area, |
240 const std::vector<gfx::Rect>& new_additional_client_areas) override; | 240 const std::vector<gfx::Rect>& new_additional_client_areas) override; |
241 void OnWindowReordered(ServerWindow* window, | 241 void OnWindowReordered(ServerWindow* window, |
242 ServerWindow* relative, | 242 ServerWindow* relative, |
243 mojom::OrderDirection direction) override; | 243 mojom::OrderDirection direction) override; |
244 void OnWillChangeWindowVisibility(ServerWindow* window) override; | 244 void OnWillChangeWindowVisibility(ServerWindow* window) override; |
| 245 void OnWindowVisibilityChanged(ServerWindow* window) override; |
245 void OnWindowSharedPropertyChanged( | 246 void OnWindowSharedPropertyChanged( |
246 ServerWindow* window, | 247 ServerWindow* window, |
247 const std::string& name, | 248 const std::string& name, |
248 const std::vector<uint8_t>* new_data) override; | 249 const std::vector<uint8_t>* new_data) override; |
249 void OnWindowPredefinedCursorChanged(ServerWindow* window, | 250 void OnWindowPredefinedCursorChanged(ServerWindow* window, |
250 int32_t cursor_id) override; | 251 int32_t cursor_id) override; |
251 void OnWindowTextInputStateChanged(ServerWindow* window, | 252 void OnWindowTextInputStateChanged(ServerWindow* window, |
252 const ui::TextInputState& state) override; | 253 const ui::TextInputState& state) override; |
253 void OnTransientWindowAdded(ServerWindow* window, | 254 void OnTransientWindowAdded(ServerWindow* window, |
254 ServerWindow* transient_child) override; | 255 ServerWindow* transient_child) override; |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 | 291 |
291 WindowManagerFactoryRegistry window_manager_factory_registry_; | 292 WindowManagerFactoryRegistry window_manager_factory_registry_; |
292 | 293 |
293 DISALLOW_COPY_AND_ASSIGN(ConnectionManager); | 294 DISALLOW_COPY_AND_ASSIGN(ConnectionManager); |
294 }; | 295 }; |
295 | 296 |
296 } // namespace ws | 297 } // namespace ws |
297 } // namespace mus | 298 } // namespace mus |
298 | 299 |
299 #endif // COMPONENTS_MUS_WS_CONNECTION_MANAGER_H_ | 300 #endif // COMPONENTS_MUS_WS_CONNECTION_MANAGER_H_ |
OLD | NEW |