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_BASE_H_ | 5 #ifndef UI_AURA_TEST_AURA_TEST_BASE_H_ |
6 #define UI_AURA_TEST_AURA_TEST_BASE_H_ | 6 #define UI_AURA_TEST_AURA_TEST_BASE_H_ |
7 | 7 |
| 8 #include "base/basictypes.h" |
8 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
9 #include "base/basictypes.h" | 10 #include "base/message_loop/message_loop.h" |
10 #include "base/message_loop.h" | |
11 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
12 #include "ui/aura/test/aura_test_helper.h" | 12 #include "ui/aura/test/aura_test_helper.h" |
13 | 13 |
14 namespace aura { | 14 namespace aura { |
15 class RootWindow; | 15 class RootWindow; |
16 class Window; | 16 class Window; |
17 class WindowDelegate; | 17 class WindowDelegate; |
18 namespace test { | 18 namespace test { |
19 | 19 |
20 // A base class for aura unit tests. | 20 // A base class for aura unit tests. |
(...skipping 28 matching lines...) Expand all Loading... |
49 base::MessageLoopForUI message_loop_; | 49 base::MessageLoopForUI message_loop_; |
50 scoped_ptr<AuraTestHelper> helper_; | 50 scoped_ptr<AuraTestHelper> helper_; |
51 | 51 |
52 DISALLOW_COPY_AND_ASSIGN(AuraTestBase); | 52 DISALLOW_COPY_AND_ASSIGN(AuraTestBase); |
53 }; | 53 }; |
54 | 54 |
55 } // namespace test | 55 } // namespace test |
56 } // namespace aura | 56 } // namespace aura |
57 | 57 |
58 #endif // UI_AURA_TEST_AURA_TEST_BASE_H_ | 58 #endif // UI_AURA_TEST_AURA_TEST_BASE_H_ |
OLD | NEW |