| 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 SERVICES_UI_WS_WINDOW_TREE_H_ | 5 #ifndef SERVICES_UI_WS_WINDOW_TREE_H_ |
| 6 #define SERVICES_UI_WS_WINDOW_TREE_H_ | 6 #define SERVICES_UI_WS_WINDOW_TREE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 mojom::OrderDirection direction, | 236 mojom::OrderDirection direction, |
| 237 bool originated_change); | 237 bool originated_change); |
| 238 void ProcessWindowDeleted(ServerWindow* window, bool originated_change); | 238 void ProcessWindowDeleted(ServerWindow* window, bool originated_change); |
| 239 void ProcessWillChangeWindowVisibility(const ServerWindow* window, | 239 void ProcessWillChangeWindowVisibility(const ServerWindow* window, |
| 240 bool originated_change); | 240 bool originated_change); |
| 241 void ProcessWindowOpacityChanged(const ServerWindow* window, | 241 void ProcessWindowOpacityChanged(const ServerWindow* window, |
| 242 float old_opacity, | 242 float old_opacity, |
| 243 float new_opacity, | 243 float new_opacity, |
| 244 bool originated_change); | 244 bool originated_change); |
| 245 void ProcessCursorChanged(const ServerWindow* window, | 245 void ProcessCursorChanged(const ServerWindow* window, |
| 246 int32_t cursor_id, | 246 mojom::Cursor cursor_id, |
| 247 bool originated_change); | 247 bool originated_change); |
| 248 void ProcessFocusChanged(const ServerWindow* old_focused_window, | 248 void ProcessFocusChanged(const ServerWindow* old_focused_window, |
| 249 const ServerWindow* new_focused_window); | 249 const ServerWindow* new_focused_window); |
| 250 void ProcessCaptureChanged(const ServerWindow* new_capture, | 250 void ProcessCaptureChanged(const ServerWindow* new_capture, |
| 251 const ServerWindow* old_capture, | 251 const ServerWindow* old_capture, |
| 252 bool originated_change); | 252 bool originated_change); |
| 253 void ProcessTransientWindowAdded(const ServerWindow* window, | 253 void ProcessTransientWindowAdded(const ServerWindow* window, |
| 254 const ServerWindow* transient_window, | 254 const ServerWindow* transient_window, |
| 255 bool originated_change); | 255 bool originated_change); |
| 256 void ProcessTransientWindowRemoved(const ServerWindow* window, | 256 void ProcessTransientWindowRemoved(const ServerWindow* window, |
| (...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 567 waiting_for_top_level_window_info_; | 567 waiting_for_top_level_window_info_; |
| 568 bool embedder_intercepts_events_ = false; | 568 bool embedder_intercepts_events_ = false; |
| 569 | 569 |
| 570 DISALLOW_COPY_AND_ASSIGN(WindowTree); | 570 DISALLOW_COPY_AND_ASSIGN(WindowTree); |
| 571 }; | 571 }; |
| 572 | 572 |
| 573 } // namespace ws | 573 } // namespace ws |
| 574 } // namespace ui | 574 } // namespace ui |
| 575 | 575 |
| 576 #endif // SERVICES_UI_WS_WINDOW_TREE_H_ | 576 #endif // SERVICES_UI_WS_WINDOW_TREE_H_ |
| OLD | NEW |