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 UI_AURA_MUS_WINDOW_TREE_CLIENT_DELEGATE_H_ | 5 #ifndef UI_AURA_MUS_WINDOW_TREE_CLIENT_DELEGATE_H_ |
6 #define UI_AURA_MUS_WINDOW_TREE_CLIENT_DELEGATE_H_ | 6 #define UI_AURA_MUS_WINDOW_TREE_CLIENT_DELEGATE_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "services/service_manager/public/interfaces/interface_provider.mojom.h" | 11 #include "services/service_manager/public/interfaces/interface_provider.mojom.h" |
12 #include "services/ui/public/interfaces/window_tree.mojom.h" | 12 #include "services/ui/public/interfaces/window_tree.mojom.h" |
13 #include "ui/aura/aura_export.h" | 13 #include "ui/aura/aura_export.h" |
14 | 14 |
15 namespace ui { | |
16 class Event; | |
17 } | |
18 | |
19 namespace aura { | 15 namespace aura { |
20 | 16 |
21 class PropertyConverter; | 17 class PropertyConverter; |
22 class Window; | 18 class Window; |
23 class WindowTreeClient; | 19 class WindowTreeClient; |
24 class WindowTreeHostMus; | 20 class WindowTreeHostMus; |
25 | 21 |
26 namespace client { | 22 namespace client { |
27 class CaptureClient; | 23 class CaptureClient; |
28 } | 24 } |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 | 61 |
66 virtual PropertyConverter* GetPropertyConverter() = 0; | 62 virtual PropertyConverter* GetPropertyConverter() = 0; |
67 | 63 |
68 protected: | 64 protected: |
69 virtual ~WindowTreeClientDelegate() {} | 65 virtual ~WindowTreeClientDelegate() {} |
70 }; | 66 }; |
71 | 67 |
72 } // namespace aura | 68 } // namespace aura |
73 | 69 |
74 #endif // UI_AURA_MUS_WINDOW_TREE_CLIENT_DELEGATE_H_ | 70 #endif // UI_AURA_MUS_WINDOW_TREE_CLIENT_DELEGATE_H_ |
OLD | NEW |