OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_TEST_AURA_TEST_HELPER_H_ | 5 #ifndef UI_AURA_TEST_AURA_TEST_HELPER_H_ |
6 #define UI_AURA_TEST_AURA_TEST_HELPER_H_ | 6 #define UI_AURA_TEST_AURA_TEST_HELPER_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "ui/aura/env.h" | 11 #include "ui/aura/env.h" |
12 #include "ui/aura/window_event_dispatcher.h" | 12 #include "ui/aura/window_event_dispatcher.h" |
13 #include "ui/aura/window_tree_host.h" | 13 #include "ui/aura/window_tree_host.h" |
14 | 14 |
15 namespace base { | 15 namespace base { |
16 class MessageLoopForUI; | 16 class MessageLoopForUI; |
17 } | 17 } |
18 | 18 |
19 namespace ui { | 19 namespace ui { |
20 class ContextFactory; | 20 class ContextFactory; |
21 class InputMethod; | |
22 class ScopedAnimationDurationScaleMode; | 21 class ScopedAnimationDurationScaleMode; |
23 } | 22 } |
24 | 23 |
25 namespace wm { | 24 namespace wm { |
26 class WMState; | 25 class WMState; |
27 } | 26 } |
28 | 27 |
29 namespace aura { | 28 namespace aura { |
30 class Env; | 29 class Env; |
31 class TestScreen; | 30 class TestScreen; |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 | 127 |
129 WindowTreeClient* window_tree_client_ = nullptr; | 128 WindowTreeClient* window_tree_client_ = nullptr; |
130 | 129 |
131 DISALLOW_COPY_AND_ASSIGN(AuraTestHelper); | 130 DISALLOW_COPY_AND_ASSIGN(AuraTestHelper); |
132 }; | 131 }; |
133 | 132 |
134 } // namespace test | 133 } // namespace test |
135 } // namespace aura | 134 } // namespace aura |
136 | 135 |
137 #endif // UI_AURA_TEST_AURA_TEST_HELPER_H_ | 136 #endif // UI_AURA_TEST_AURA_TEST_HELPER_H_ |
OLD | NEW |