| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/renderer/renderer_blink_platform_impl.h" | 5 #include "content/renderer/renderer_blink_platform_impl.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 #include "third_party/WebKit/public/platform/linux/WebSandboxSupport.h" | 121 #include "third_party/WebKit/public/platform/linux/WebSandboxSupport.h" |
| 122 #include "third_party/icu/source/common/unicode/utf16.h" | 122 #include "third_party/icu/source/common/unicode/utf16.h" |
| 123 #endif | 123 #endif |
| 124 #endif | 124 #endif |
| 125 | 125 |
| 126 #if defined(OS_WIN) | 126 #if defined(OS_WIN) |
| 127 #include "content/common/child_process_messages.h" | 127 #include "content/common/child_process_messages.h" |
| 128 #endif | 128 #endif |
| 129 | 129 |
| 130 #if defined(USE_AURA) | 130 #if defined(USE_AURA) |
| 131 #include "content/renderer/webscrollbarbehavior_impl_gtkoraura.h" | 131 #include "content/renderer/webscrollbarbehavior_impl_aura.h" |
| 132 #elif !defined(OS_MACOSX) | 132 #elif !defined(OS_MACOSX) |
| 133 #include "third_party/WebKit/public/platform/WebScrollbarBehavior.h" | 133 #include "third_party/WebKit/public/platform/WebScrollbarBehavior.h" |
| 134 #define WebScrollbarBehaviorImpl blink::WebScrollbarBehavior | 134 #define WebScrollbarBehaviorImpl blink::WebScrollbarBehavior |
| 135 #endif | 135 #endif |
| 136 | 136 |
| 137 #if defined(ENABLE_WEBRTC) | 137 #if defined(ENABLE_WEBRTC) |
| 138 #include "content/renderer/media/rtc_certificate_generator.h" | 138 #include "content/renderer/media/rtc_certificate_generator.h" |
| 139 #include "content/renderer/media/webrtc/peer_connection_dependency_factory.h" | 139 #include "content/renderer/media/webrtc/peer_connection_dependency_factory.h" |
| 140 #endif | 140 #endif |
| 141 | 141 |
| (...skipping 1148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1290 return &trial_token_validator_; | 1290 return &trial_token_validator_; |
| 1291 } | 1291 } |
| 1292 | 1292 |
| 1293 void RendererBlinkPlatformImpl::workerContextCreated( | 1293 void RendererBlinkPlatformImpl::workerContextCreated( |
| 1294 const v8::Local<v8::Context>& worker) { | 1294 const v8::Local<v8::Context>& worker) { |
| 1295 GetContentClient()->renderer()->DidInitializeWorkerContextOnWorkerThread( | 1295 GetContentClient()->renderer()->DidInitializeWorkerContextOnWorkerThread( |
| 1296 worker); | 1296 worker); |
| 1297 } | 1297 } |
| 1298 | 1298 |
| 1299 } // namespace content | 1299 } // namespace content |
| OLD | NEW |