OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CONTENT_TEST_TEST_BLINK_WEB_UNIT_TEST_SUPPORT_H_ | 5 #ifndef CONTENT_TEST_TEST_BLINK_WEB_UNIT_TEST_SUPPORT_H_ |
6 #define CONTENT_TEST_TEST_BLINK_WEB_UNIT_TEST_SUPPORT_H_ | 6 #define CONTENT_TEST_TEST_BLINK_WEB_UNIT_TEST_SUPPORT_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/files/scoped_temp_dir.h" | 9 #include "base/files/scoped_temp_dir.h" |
| 10 #include "base/macros.h" |
| 11 #include "build/build_config.h" |
10 #include "cc/blink/web_compositor_support_impl.h" | 12 #include "cc/blink/web_compositor_support_impl.h" |
11 #include "content/child/blink_platform_impl.h" | 13 #include "content/child/blink_platform_impl.h" |
12 #include "content/child/simple_webmimeregistry_impl.h" | 14 #include "content/child/simple_webmimeregistry_impl.h" |
13 #include "content/child/webfileutilities_impl.h" | 15 #include "content/child/webfileutilities_impl.h" |
14 #include "content/test/mock_webblob_registry_impl.h" | 16 #include "content/test/mock_webblob_registry_impl.h" |
15 #include "content/test/mock_webclipboard_impl.h" | 17 #include "content/test/mock_webclipboard_impl.h" |
16 #include "content/test/weburl_loader_mock_factory.h" | 18 #include "content/test/weburl_loader_mock_factory.h" |
17 #include "third_party/WebKit/public/platform/WebUnitTestSupport.h" | 19 #include "third_party/WebKit/public/platform/WebUnitTestSupport.h" |
18 | 20 |
19 namespace base { | 21 namespace base { |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 | 107 |
106 #if defined(OS_WIN) || defined(OS_MACOSX) | 108 #if defined(OS_WIN) || defined(OS_MACOSX) |
107 blink::WebThemeEngine* active_theme_engine_; | 109 blink::WebThemeEngine* active_theme_engine_; |
108 #endif | 110 #endif |
109 DISALLOW_COPY_AND_ASSIGN(TestBlinkWebUnitTestSupport); | 111 DISALLOW_COPY_AND_ASSIGN(TestBlinkWebUnitTestSupport); |
110 }; | 112 }; |
111 | 113 |
112 } // namespace content | 114 } // namespace content |
113 | 115 |
114 #endif // CONTENT_TEST_TEST_BLINK_WEB_UNIT_TEST_SUPPORT_H_ | 116 #endif // CONTENT_TEST_TEST_BLINK_WEB_UNIT_TEST_SUPPORT_H_ |
OLD | NEW |