| 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 25 matching lines...) Expand all Loading... |
| 36 class Event; | 36 class Event; |
| 37 } | 37 } |
| 38 | 38 |
| 39 namespace ui { | 39 namespace ui { |
| 40 namespace ws { | 40 namespace ws { |
| 41 | 41 |
| 42 class AccessPolicy; | 42 class AccessPolicy; |
| 43 class DisplayManager; | 43 class DisplayManager; |
| 44 class Display; | 44 class Display; |
| 45 class DragTargetConnection; | 45 class DragTargetConnection; |
| 46 class EventMatcher; | |
| 47 class ServerWindow; | 46 class ServerWindow; |
| 48 class TargetedEvent; | 47 class TargetedEvent; |
| 49 class WindowManagerDisplayRoot; | 48 class WindowManagerDisplayRoot; |
| 50 class WindowManagerState; | 49 class WindowManagerState; |
| 51 class WindowServer; | 50 class WindowServer; |
| 52 class WindowTreeTest; | |
| 53 | 51 |
| 54 namespace test { | 52 namespace test { |
| 55 class WindowTreeTestApi; | 53 class WindowTreeTestApi; |
| 56 } | 54 } |
| 57 | 55 |
| 58 // WindowTree represents a view onto portions of the window tree. The parts of | 56 // WindowTree represents a view onto portions of the window tree. The parts of |
| 59 // the tree exposed to the client start at the root windows. A WindowTree may | 57 // the tree exposed to the client start at the root windows. A WindowTree may |
| 60 // have any number of roots (including none). A WindowTree may not have | 58 // have any number of roots (including none). A WindowTree may not have |
| 61 // visibility of all the descendants of its roots. | 59 // visibility of all the descendants of its roots. |
| 62 // | 60 // |
| (...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 waiting_for_top_level_window_info_; | 578 waiting_for_top_level_window_info_; |
| 581 bool embedder_intercepts_events_ = false; | 579 bool embedder_intercepts_events_ = false; |
| 582 | 580 |
| 583 DISALLOW_COPY_AND_ASSIGN(WindowTree); | 581 DISALLOW_COPY_AND_ASSIGN(WindowTree); |
| 584 }; | 582 }; |
| 585 | 583 |
| 586 } // namespace ws | 584 } // namespace ws |
| 587 } // namespace ui | 585 } // namespace ui |
| 588 | 586 |
| 589 #endif // SERVICES_UI_WS_WINDOW_TREE_H_ | 587 #endif // SERVICES_UI_WS_WINDOW_TREE_H_ |
| OLD | NEW |