| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 #include "third_party/WebKit/public/platform/linux/WebSandboxSupport.h" | 124 #include "third_party/WebKit/public/platform/linux/WebSandboxSupport.h" |
| 125 #include "third_party/icu/source/common/unicode/utf16.h" | 125 #include "third_party/icu/source/common/unicode/utf16.h" |
| 126 #endif | 126 #endif |
| 127 #endif | 127 #endif |
| 128 | 128 |
| 129 #if defined(OS_WIN) | 129 #if defined(OS_WIN) |
| 130 #include "content/common/child_process_messages.h" | 130 #include "content/common/child_process_messages.h" |
| 131 #endif | 131 #endif |
| 132 | 132 |
| 133 #if defined(USE_AURA) | 133 #if defined(USE_AURA) |
| 134 #include "content/renderer/webscrollbarbehavior_impl_aura.h" | 134 #include "content/renderer/webscrollbarbehavior_impl_gtkoraura.h" |
| 135 #elif !defined(OS_MACOSX) | 135 #elif !defined(OS_MACOSX) |
| 136 #include "third_party/WebKit/public/platform/WebScrollbarBehavior.h" | 136 #include "third_party/WebKit/public/platform/WebScrollbarBehavior.h" |
| 137 #define WebScrollbarBehaviorImpl blink::WebScrollbarBehavior | 137 #define WebScrollbarBehaviorImpl blink::WebScrollbarBehavior |
| 138 #endif | 138 #endif |
| 139 | 139 |
| 140 #if defined(ENABLE_WEBRTC) | 140 #if defined(ENABLE_WEBRTC) |
| 141 #include "content/renderer/media/rtc_certificate_generator.h" | 141 #include "content/renderer/media/rtc_certificate_generator.h" |
| 142 #include "content/renderer/media/webrtc/peer_connection_dependency_factory.h" | 142 #include "content/renderer/media/webrtc/peer_connection_dependency_factory.h" |
| 143 #endif | 143 #endif |
| 144 | 144 |
| (...skipping 1181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1326 return &trial_token_validator_; | 1326 return &trial_token_validator_; |
| 1327 } | 1327 } |
| 1328 | 1328 |
| 1329 void RendererBlinkPlatformImpl::workerContextCreated( | 1329 void RendererBlinkPlatformImpl::workerContextCreated( |
| 1330 const v8::Local<v8::Context>& worker) { | 1330 const v8::Local<v8::Context>& worker) { |
| 1331 GetContentClient()->renderer()->DidInitializeWorkerContextOnWorkerThread( | 1331 GetContentClient()->renderer()->DidInitializeWorkerContextOnWorkerThread( |
| 1332 worker); | 1332 worker); |
| 1333 } | 1333 } |
| 1334 | 1334 |
| 1335 } // namespace content | 1335 } // namespace content |
| OLD | NEW |