| 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 27 matching lines...) Expand all Loading... |
| 38 #include "third_party/WebKit/public/web/WebNetworkStateNotifier.h" | 38 #include "third_party/WebKit/public/web/WebNetworkStateNotifier.h" |
| 39 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h" | 39 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h" |
| 40 #include "v8/include/v8.h" | 40 #include "v8/include/v8.h" |
| 41 | 41 |
| 42 #if defined(OS_MACOSX) | 42 #if defined(OS_MACOSX) |
| 43 #include "base/mac/foundation_util.h" | 43 #include "base/mac/foundation_util.h" |
| 44 #include "base/mac/scoped_nsautorelease_pool.h" | 44 #include "base/mac/scoped_nsautorelease_pool.h" |
| 45 #endif | 45 #endif |
| 46 | 46 |
| 47 #ifdef V8_USE_EXTERNAL_STARTUP_DATA | 47 #ifdef V8_USE_EXTERNAL_STARTUP_DATA |
| 48 #include "gin/v8_initializer.h" | 48 #include "gin/v8_initializer.h" // nogncheck |
| 49 #endif | 49 #endif |
| 50 | 50 |
| 51 #if defined(ENABLE_WEBRTC) | 51 #if defined(ENABLE_WEBRTC) |
| 52 #include "content/renderer/media/rtc_certificate.h" | 52 #include "content/renderer/media/rtc_certificate.h" |
| 53 #include "third_party/WebKit/public/platform/WebRTCCertificateGenerator.h" | 53 #include "third_party/WebKit/public/platform/WebRTCCertificateGenerator.h" |
| 54 #include "third_party/webrtc/base/rtccertificate.h" | 54 #include "third_party/webrtc/base/rtccertificate.h" |
| 55 #endif | 55 #endif |
| 56 | 56 |
| 57 namespace { | 57 namespace { |
| 58 | 58 |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 blink::WebRTCCertificateGenerator* | 349 blink::WebRTCCertificateGenerator* |
| 350 TestBlinkWebUnitTestSupport::createRTCCertificateGenerator() { | 350 TestBlinkWebUnitTestSupport::createRTCCertificateGenerator() { |
| 351 #if defined(ENABLE_WEBRTC) | 351 #if defined(ENABLE_WEBRTC) |
| 352 return new TestWebRTCCertificateGenerator(); | 352 return new TestWebRTCCertificateGenerator(); |
| 353 #else | 353 #else |
| 354 return nullptr; | 354 return nullptr; |
| 355 #endif | 355 #endif |
| 356 } | 356 } |
| 357 | 357 |
| 358 } // namespace content | 358 } // namespace content |
| OLD | NEW |