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 ASH_TEST_ASH_TEST_BASE_H_ | 5 #ifndef ASH_TEST_ASH_TEST_BASE_H_ |
6 #define ASH_TEST_ASH_TEST_BASE_H_ | 6 #define ASH_TEST_ASH_TEST_BASE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
(...skipping 13 matching lines...) Expand all Loading... |
24 class RootWindow; | 24 class RootWindow; |
25 class Window; | 25 class Window; |
26 class WindowDelegate; | 26 class WindowDelegate; |
27 | 27 |
28 namespace test { | 28 namespace test { |
29 class EventGenerator; | 29 class EventGenerator; |
30 } // namespace test | 30 } // namespace test |
31 } // namespace aura | 31 } // namespace aura |
32 | 32 |
33 namespace ash { | 33 namespace ash { |
34 namespace internal { | |
35 class DisplayManager; | 34 class DisplayManager; |
36 } // namespace internal | |
37 | 35 |
38 namespace test { | 36 namespace test { |
39 | 37 |
40 class AshTestHelper; | 38 class AshTestHelper; |
41 class TestScreenshotDelegate; | 39 class TestScreenshotDelegate; |
42 class TestSystemTrayDelegate; | 40 class TestSystemTrayDelegate; |
43 #if defined(OS_WIN) | 41 #if defined(OS_WIN) |
44 class TestMetroViewerProcessHost; | 42 class TestMetroViewerProcessHost; |
45 #endif | 43 #endif |
46 | 44 |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 virtual ~NoSessionAshTestBase() {} | 159 virtual ~NoSessionAshTestBase() {} |
162 | 160 |
163 private: | 161 private: |
164 DISALLOW_COPY_AND_ASSIGN(NoSessionAshTestBase); | 162 DISALLOW_COPY_AND_ASSIGN(NoSessionAshTestBase); |
165 }; | 163 }; |
166 | 164 |
167 } // namespace test | 165 } // namespace test |
168 } // namespace ash | 166 } // namespace ash |
169 | 167 |
170 #endif // ASH_TEST_ASH_TEST_BASE_H_ | 168 #endif // ASH_TEST_ASH_TEST_BASE_H_ |
OLD | NEW |