| 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_WINDOW_TREE_H_ | 5 #ifndef SERVICES_UI_WS_WINDOW_TREE_H_ |
| 6 #define COMPONENTS_MUS_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> |
| 11 #include <memory> | 11 #include <memory> |
| 12 #include <queue> | 12 #include <queue> |
| 13 #include <set> | 13 #include <set> |
| 14 #include <string> | 14 #include <string> |
| 15 #include <vector> | 15 #include <vector> |
| 16 | 16 |
| 17 #include "base/callback.h" | 17 #include "base/callback.h" |
| 18 #include "base/containers/hash_tables.h" | 18 #include "base/containers/hash_tables.h" |
| 19 #include "base/macros.h" | 19 #include "base/macros.h" |
| 20 #include "cc/ipc/surface_id.mojom.h" | 20 #include "cc/ipc/surface_id.mojom.h" |
| 21 #include "components/mus/public/interfaces/window_tree.mojom.h" | |
| 22 #include "components/mus/ws/access_policy_delegate.h" | |
| 23 #include "components/mus/ws/ids.h" | |
| 24 #include "components/mus/ws/user_id.h" | |
| 25 #include "components/mus/ws/window_tree_binding.h" | |
| 26 #include "mojo/public/cpp/bindings/associated_binding.h" | 21 #include "mojo/public/cpp/bindings/associated_binding.h" |
| 22 #include "services/ui/public/interfaces/window_tree.mojom.h" |
| 23 #include "services/ui/ws/access_policy_delegate.h" |
| 24 #include "services/ui/ws/ids.h" |
| 25 #include "services/ui/ws/user_id.h" |
| 26 #include "services/ui/ws/window_tree_binding.h" |
| 27 | 27 |
| 28 namespace gfx { | 28 namespace gfx { |
| 29 class Insets; | 29 class Insets; |
| 30 class Rect; | 30 class Rect; |
| 31 } | 31 } |
| 32 | 32 |
| 33 namespace ui { | 33 namespace ui { |
| 34 class Event; | 34 class Event; |
| 35 } | 35 } |
| 36 | 36 |
| (...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 std::unique_ptr<WaitingForTopLevelWindowInfo> | 487 std::unique_ptr<WaitingForTopLevelWindowInfo> |
| 488 waiting_for_top_level_window_info_; | 488 waiting_for_top_level_window_info_; |
| 489 bool embedder_intercepts_events_ = false; | 489 bool embedder_intercepts_events_ = false; |
| 490 | 490 |
| 491 DISALLOW_COPY_AND_ASSIGN(WindowTree); | 491 DISALLOW_COPY_AND_ASSIGN(WindowTree); |
| 492 }; | 492 }; |
| 493 | 493 |
| 494 } // namespace ws | 494 } // namespace ws |
| 495 } // namespace mus | 495 } // namespace mus |
| 496 | 496 |
| 497 #endif // COMPONENTS_MUS_WS_WINDOW_TREE_H_ | 497 #endif // SERVICES_UI_WS_WINDOW_TREE_H_ |
| OLD | NEW |