| 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 <memory> | 7 #include <memory> |
| 8 #include <utility> | 8 #include <utility> |
| 9 | 9 |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 #include "third_party/WebKit/public/platform/mac/WebSandboxSupport.h" | 109 #include "third_party/WebKit/public/platform/mac/WebSandboxSupport.h" |
| 110 #endif | 110 #endif |
| 111 | 111 |
| 112 #if defined(OS_POSIX) | 112 #if defined(OS_POSIX) |
| 113 #include "base/file_descriptor_posix.h" | 113 #include "base/file_descriptor_posix.h" |
| 114 #if !defined(OS_MACOSX) && !defined(OS_ANDROID) | 114 #if !defined(OS_MACOSX) && !defined(OS_ANDROID) |
| 115 #include <map> | 115 #include <map> |
| 116 #include <string> | 116 #include <string> |
| 117 | 117 |
| 118 #include "base/synchronization/lock.h" | 118 #include "base/synchronization/lock.h" |
| 119 #include "content/common/child_process_sandbox_support_impl_linux.h" | 119 #include "content/child/child_process_sandbox_support_impl_linux.h" |
| 120 #include "third_party/WebKit/public/platform/linux/WebFallbackFont.h" | 120 #include "third_party/WebKit/public/platform/linux/WebFallbackFont.h" |
| 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 |
| (...skipping 1158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1288 return &trial_token_validator_; | 1288 return &trial_token_validator_; |
| 1289 } | 1289 } |
| 1290 | 1290 |
| 1291 void RendererBlinkPlatformImpl::workerContextCreated( | 1291 void RendererBlinkPlatformImpl::workerContextCreated( |
| 1292 const v8::Local<v8::Context>& worker) { | 1292 const v8::Local<v8::Context>& worker) { |
| 1293 GetContentClient()->renderer()->DidInitializeWorkerContextOnWorkerThread( | 1293 GetContentClient()->renderer()->DidInitializeWorkerContextOnWorkerThread( |
| 1294 worker); | 1294 worker); |
| 1295 } | 1295 } |
| 1296 | 1296 |
| 1297 } // namespace content | 1297 } // namespace content |
| OLD | NEW |