| 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 <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/files/scoped_temp_dir.h" | 11 #include "base/files/scoped_temp_dir.h" |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "build/build_config.h" | 13 #include "build/build_config.h" |
| 14 #include "cc/blink/web_compositor_support_impl.h" | 14 #include "cc/blink/web_compositor_support_impl.h" |
| 15 #include "content/child/blink_platform_impl.h" | 15 #include "content/child/blink_platform_impl.h" |
| 16 #include "content/child/simple_webmimeregistry_impl.h" | 16 #include "content/child/simple_webmimeregistry_impl.h" |
| 17 #include "content/child/webfileutilities_impl.h" | 17 #include "content/child/webfileutilities_impl.h" |
| 18 #include "content/test/mock_webblob_registry_impl.h" | 18 #include "content/test/mock_webblob_registry_impl.h" |
| 19 #include "content/test/mock_webclipboard_impl.h" | 19 #include "content/test/mock_webclipboard_impl.h" |
| 20 #include "third_party/WebKit/public/platform/WebURLLoaderMockFactory.h" | 20 #include "third_party/WebKit/public/platform/WebURLLoaderMockFactory.h" |
| 21 | 21 |
| 22 namespace base { | |
| 23 class StatsTable; | |
| 24 } | |
| 25 | |
| 26 namespace blink { | |
| 27 class WebLayerTreeView; | |
| 28 } | |
| 29 | |
| 30 namespace blink { | 22 namespace blink { |
| 31 namespace scheduler { | 23 namespace scheduler { |
| 32 class RendererScheduler; | 24 class RendererScheduler; |
| 33 } | 25 } |
| 34 } | 26 } |
| 35 | 27 |
| 36 namespace cc { | 28 namespace cc { |
| 37 class TestSharedBitmapManager; | 29 class TestSharedBitmapManager; |
| 38 } | 30 } |
| 39 | 31 |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 | 94 |
| 103 #if defined(OS_WIN) || defined(OS_MACOSX) | 95 #if defined(OS_WIN) || defined(OS_MACOSX) |
| 104 blink::WebThemeEngine* active_theme_engine_ = nullptr; | 96 blink::WebThemeEngine* active_theme_engine_ = nullptr; |
| 105 #endif | 97 #endif |
| 106 DISALLOW_COPY_AND_ASSIGN(TestBlinkWebUnitTestSupport); | 98 DISALLOW_COPY_AND_ASSIGN(TestBlinkWebUnitTestSupport); |
| 107 }; | 99 }; |
| 108 | 100 |
| 109 } // namespace content | 101 } // namespace content |
| 110 | 102 |
| 111 #endif // CONTENT_TEST_TEST_BLINK_WEB_UNIT_TEST_SUPPORT_H_ | 103 #endif // CONTENT_TEST_TEST_BLINK_WEB_UNIT_TEST_SUPPORT_H_ |
| OLD | NEW |