| 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_VIEWS_TEST_VIEWS_TEST_BASE_H_ | 5 #ifndef UI_VIEWS_TEST_VIEWS_TEST_BASE_H_ |
| 6 #define UI_VIEWS_TEST_VIEWS_TEST_BASE_H_ | 6 #define UI_VIEWS_TEST_VIEWS_TEST_BASE_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
| 11 #include "ui/views/test/test_views_delegate.h" | 11 #include "ui/views/test/test_views_delegate.h" |
| 12 | 12 |
| 13 #if defined(OS_WIN) | 13 #if defined(OS_WIN) |
| 14 #include "ui/base/win/scoped_ole_initializer.h" | 14 #include "ui/base/win/scoped_ole_initializer.h" |
| 15 #endif | 15 #endif |
| 16 | 16 |
| 17 namespace aura { | 17 namespace aura { |
| 18 namespace test { | 18 namespace test { |
| 19 class AuraTestHelper; | 19 class AuraTestHelper; |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 #if defined(OS_WIN) | 64 #if defined(OS_WIN) |
| 65 ui::ScopedOleInitializer ole_initializer_; | 65 ui::ScopedOleInitializer ole_initializer_; |
| 66 #endif | 66 #endif |
| 67 | 67 |
| 68 DISALLOW_COPY_AND_ASSIGN(ViewsTestBase); | 68 DISALLOW_COPY_AND_ASSIGN(ViewsTestBase); |
| 69 }; | 69 }; |
| 70 | 70 |
| 71 } // namespace views | 71 } // namespace views |
| 72 | 72 |
| 73 #endif // UI_VIEWS_TEST_VIEWS_TEST_BASE_H_ | 73 #endif // UI_VIEWS_TEST_VIEWS_TEST_BASE_H_ |
| OLD | NEW |