| 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 #include "content/test/test_blink_web_unit_test_support.h" | 5 #include "content/test/test_blink_web_unit_test_support.h" |
| 6 | 6 |
| 7 #include "base/callback.h" | 7 #include "base/callback.h" |
| 8 #include "base/feature_list.h" | 8 #include "base/feature_list.h" |
| 9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
| 10 #include "base/files/file_util.h" | 10 #include "base/files/file_util.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 "base/memory/ptr_util.h" | 13 #include "base/memory/ptr_util.h" |
| 14 #include "base/path_service.h" | 14 #include "base/path_service.h" |
| 15 #include "base/single_thread_task_runner.h" | 15 #include "base/single_thread_task_runner.h" |
| 16 #include "base/strings/utf_string_conversions.h" | 16 #include "base/strings/utf_string_conversions.h" |
| 17 #include "base/threading/platform_thread.h" | 17 #include "base/threading/platform_thread.h" |
| 18 #include "base/threading/thread_task_runner_handle.h" | 18 #include "base/threading/thread_task_runner_handle.h" |
| 19 #include "build/build_config.h" | 19 #include "build/build_config.h" |
| 20 #include "cc/blink/web_layer_impl.h" | 20 #include "cc/blink/web_layer_impl.h" |
| 21 #include "cc/test/test_shared_bitmap_manager.h" | 21 #include "cc/test/test_shared_bitmap_manager.h" |
| 22 #include "cc/trees/layer_tree_settings.h" | 22 #include "cc/trees/layer_tree_settings.h" |
| 23 #include "content/app/mojo/mojo_init.h" | 23 #include "content/app/mojo/mojo_init.h" |
| 24 #include "content/child/web_url_loader_impl.h" | 24 #include "content/child/web_url_loader_impl.h" |
| 25 #include "content/test/mock_webclipboard_impl.h" | 25 #include "content/test/mock_webclipboard_impl.h" |
| 26 #include "content/test/web_gesture_curve_mock.h" | 26 #include "content/test/web_gesture_curve_mock.h" |
| 27 #include "media/base/media.h" | 27 #include "media/base/media.h" |
| 28 #include "media/media_features.h" | 28 #include "media/media_features.h" |
| 29 #include "net/cookies/cookie_monster.h" | 29 #include "net/cookies/cookie_monster.h" |
| 30 #include "storage/browser/database/vfs_backend.h" | |
| 31 #include "third_party/WebKit/public/platform/WebConnectionType.h" | 30 #include "third_party/WebKit/public/platform/WebConnectionType.h" |
| 32 #include "third_party/WebKit/public/platform/WebData.h" | 31 #include "third_party/WebKit/public/platform/WebData.h" |
| 33 #include "third_party/WebKit/public/platform/WebNetworkStateNotifier.h" | 32 #include "third_party/WebKit/public/platform/WebNetworkStateNotifier.h" |
| 34 #include "third_party/WebKit/public/platform/WebPluginListBuilder.h" | 33 #include "third_party/WebKit/public/platform/WebPluginListBuilder.h" |
| 35 #include "third_party/WebKit/public/platform/WebString.h" | 34 #include "third_party/WebKit/public/platform/WebString.h" |
| 36 #include "third_party/WebKit/public/platform/WebThread.h" | 35 #include "third_party/WebKit/public/platform/WebThread.h" |
| 37 #include "third_party/WebKit/public/platform/WebURL.h" | 36 #include "third_party/WebKit/public/platform/WebURL.h" |
| 38 #include "third_party/WebKit/public/platform/scheduler/renderer/renderer_schedul
er.h" | 37 #include "third_party/WebKit/public/platform/scheduler/renderer/renderer_schedul
er.h" |
| 39 #include "third_party/WebKit/public/platform/scheduler/test/renderer_scheduler_t
est_support.h" | 38 #include "third_party/WebKit/public/platform/scheduler/test/renderer_scheduler_t
est_support.h" |
| 40 #include "third_party/WebKit/public/web/WebKit.h" | 39 #include "third_party/WebKit/public/web/WebKit.h" |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 blink::WebRTCCertificateGenerator* | 331 blink::WebRTCCertificateGenerator* |
| 333 TestBlinkWebUnitTestSupport::CreateRTCCertificateGenerator() { | 332 TestBlinkWebUnitTestSupport::CreateRTCCertificateGenerator() { |
| 334 #if BUILDFLAG(ENABLE_WEBRTC) | 333 #if BUILDFLAG(ENABLE_WEBRTC) |
| 335 return new TestWebRTCCertificateGenerator(); | 334 return new TestWebRTCCertificateGenerator(); |
| 336 #else | 335 #else |
| 337 return nullptr; | 336 return nullptr; |
| 338 #endif | 337 #endif |
| 339 } | 338 } |
| 340 | 339 |
| 341 } // namespace content | 340 } // namespace content |
| OLD | NEW |