| 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/feature_list.h" | 7 #include "base/feature_list.h" |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "base/files/file_util.h" | 9 #include "base/files/file_util.h" |
| 10 #include "base/files/scoped_temp_dir.h" | 10 #include "base/files/scoped_temp_dir.h" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "content/app/mojo/mojo_init.h" | 22 #include "content/app/mojo/mojo_init.h" |
| 23 #include "content/child/web_url_loader_impl.h" | 23 #include "content/child/web_url_loader_impl.h" |
| 24 #include "content/test/mock_webclipboard_impl.h" | 24 #include "content/test/mock_webclipboard_impl.h" |
| 25 #include "content/test/web_gesture_curve_mock.h" | 25 #include "content/test/web_gesture_curve_mock.h" |
| 26 #include "media/base/media.h" | 26 #include "media/base/media.h" |
| 27 #include "media/media_features.h" | 27 #include "media/media_features.h" |
| 28 #include "net/cookies/cookie_monster.h" | 28 #include "net/cookies/cookie_monster.h" |
| 29 #include "storage/browser/database/vfs_backend.h" | 29 #include "storage/browser/database/vfs_backend.h" |
| 30 #include "third_party/WebKit/public/platform/WebConnectionType.h" | 30 #include "third_party/WebKit/public/platform/WebConnectionType.h" |
| 31 #include "third_party/WebKit/public/platform/WebData.h" | 31 #include "third_party/WebKit/public/platform/WebData.h" |
| 32 #include "third_party/WebKit/public/platform/WebNetworkStateNotifier.h" |
| 32 #include "third_party/WebKit/public/platform/WebPluginListBuilder.h" | 33 #include "third_party/WebKit/public/platform/WebPluginListBuilder.h" |
| 33 #include "third_party/WebKit/public/platform/WebString.h" | 34 #include "third_party/WebKit/public/platform/WebString.h" |
| 34 #include "third_party/WebKit/public/platform/WebThread.h" | 35 #include "third_party/WebKit/public/platform/WebThread.h" |
| 35 #include "third_party/WebKit/public/platform/WebURL.h" | 36 #include "third_party/WebKit/public/platform/WebURL.h" |
| 36 #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" |
| 37 #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" |
| 38 #include "third_party/WebKit/public/web/WebKit.h" | 39 #include "third_party/WebKit/public/web/WebKit.h" |
| 39 #include "third_party/WebKit/public/web/WebNetworkStateNotifier.h" | |
| 40 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h" | 40 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h" |
| 41 #include "v8/include/v8.h" | 41 #include "v8/include/v8.h" |
| 42 | 42 |
| 43 #if defined(OS_MACOSX) | 43 #if defined(OS_MACOSX) |
| 44 #include "base/mac/foundation_util.h" | 44 #include "base/mac/foundation_util.h" |
| 45 #include "base/mac/scoped_nsautorelease_pool.h" | 45 #include "base/mac/scoped_nsautorelease_pool.h" |
| 46 #endif | 46 #endif |
| 47 | 47 |
| 48 #ifdef V8_USE_EXTERNAL_STARTUP_DATA | 48 #ifdef V8_USE_EXTERNAL_STARTUP_DATA |
| 49 #include "gin/v8_initializer.h" // nogncheck | 49 #include "gin/v8_initializer.h" // nogncheck |
| (...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 blink::WebRTCCertificateGenerator* | 348 blink::WebRTCCertificateGenerator* |
| 349 TestBlinkWebUnitTestSupport::createRTCCertificateGenerator() { | 349 TestBlinkWebUnitTestSupport::createRTCCertificateGenerator() { |
| 350 #if BUILDFLAG(ENABLE_WEBRTC) | 350 #if BUILDFLAG(ENABLE_WEBRTC) |
| 351 return new TestWebRTCCertificateGenerator(); | 351 return new TestWebRTCCertificateGenerator(); |
| 352 #else | 352 #else |
| 353 return nullptr; | 353 return nullptr; |
| 354 #endif | 354 #endif |
| 355 } | 355 } |
| 356 | 356 |
| 357 } // namespace content | 357 } // namespace content |
| OLD | NEW |