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_PUBLIC_CPP_WINDOW_TREE_CLIENT_H_ | 5 #ifndef SERVICES_UI_PUBLIC_CPP_WINDOW_TREE_CLIENT_H_ |
6 #define COMPONENTS_MUS_PUBLIC_CPP_WINDOW_TREE_CLIENT_H_ | 6 #define SERVICES_UI_PUBLIC_CPP_WINDOW_TREE_CLIENT_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <map> | 10 #include <map> |
11 #include <set> | 11 #include <set> |
12 #include <string> | 12 #include <string> |
13 #include <vector> | 13 #include <vector> |
14 | 14 |
15 #include "base/atomicops.h" | 15 #include "base/atomicops.h" |
16 #include "base/macros.h" | 16 #include "base/macros.h" |
17 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
18 #include "base/observer_list.h" | 18 #include "base/observer_list.h" |
19 #include "components/mus/common/types.h" | |
20 #include "components/mus/public/cpp/window.h" | |
21 #include "components/mus/public/cpp/window_manager_delegate.h" | |
22 #include "components/mus/public/interfaces/window_tree.mojom.h" | |
23 #include "mojo/public/cpp/bindings/associated_binding.h" | 19 #include "mojo/public/cpp/bindings/associated_binding.h" |
24 #include "mojo/public/cpp/bindings/strong_binding.h" | 20 #include "mojo/public/cpp/bindings/strong_binding.h" |
| 21 #include "services/ui/common/types.h" |
| 22 #include "services/ui/public/cpp/window.h" |
| 23 #include "services/ui/public/cpp/window_manager_delegate.h" |
| 24 #include "services/ui/public/interfaces/window_tree.mojom.h" |
25 | 25 |
26 namespace display { | 26 namespace display { |
27 class Display; | 27 class Display; |
28 } | 28 } |
29 | 29 |
30 namespace gfx { | 30 namespace gfx { |
31 class Insets; | 31 class Insets; |
32 class Size; | 32 class Size; |
33 } | 33 } |
34 | 34 |
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
397 // Monotonically increasing ID for event observers. | 397 // Monotonically increasing ID for event observers. |
398 uint32_t event_observer_id_ = 0u; | 398 uint32_t event_observer_id_ = 0u; |
399 | 399 |
400 base::WeakPtrFactory<WindowTreeClient> weak_factory_; | 400 base::WeakPtrFactory<WindowTreeClient> weak_factory_; |
401 | 401 |
402 DISALLOW_COPY_AND_ASSIGN(WindowTreeClient); | 402 DISALLOW_COPY_AND_ASSIGN(WindowTreeClient); |
403 }; | 403 }; |
404 | 404 |
405 } // namespace mus | 405 } // namespace mus |
406 | 406 |
407 #endif // COMPONENTS_MUS_PUBLIC_CPP_WINDOW_TREE_CLIENT_H_ | 407 #endif // SERVICES_UI_PUBLIC_CPP_WINDOW_TREE_CLIENT_H_ |
OLD | NEW |