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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 } | 308 } |
309 | 309 |
310 //------------------------------------------------------------------------------ | 310 //------------------------------------------------------------------------------ |
311 | 311 |
312 blink::WebURLLoader* RendererBlinkPlatformImpl::createURLLoader() { | 312 blink::WebURLLoader* RendererBlinkPlatformImpl::createURLLoader() { |
313 ChildThreadImpl* child_thread = ChildThreadImpl::current(); | 313 ChildThreadImpl* child_thread = ChildThreadImpl::current(); |
314 // There may be no child thread in RenderViewTests. These tests can still use | 314 // There may be no child thread in RenderViewTests. These tests can still use |
315 // data URLs to bypass the ResourceDispatcher. | 315 // data URLs to bypass the ResourceDispatcher. |
316 return new content::WebURLLoaderImpl( | 316 return new content::WebURLLoaderImpl( |
317 child_thread ? child_thread->resource_dispatcher() : NULL, | 317 child_thread ? child_thread->resource_dispatcher() : NULL, |
318 base::WrapUnique(currentThread()->getWebTaskRunner()->clone())); | 318 currentThread()->getWebTaskRunner()->clone()); |
319 } | 319 } |
320 | 320 |
321 blink::WebThread* RendererBlinkPlatformImpl::currentThread() { | 321 blink::WebThread* RendererBlinkPlatformImpl::currentThread() { |
322 if (main_thread_->isCurrentThread()) | 322 if (main_thread_->isCurrentThread()) |
323 return main_thread_.get(); | 323 return main_thread_.get(); |
324 return BlinkPlatformImpl::currentThread(); | 324 return BlinkPlatformImpl::currentThread(); |
325 } | 325 } |
326 | 326 |
327 blink::BlameContext* RendererBlinkPlatformImpl::topLevelBlameContext() { | 327 blink::BlameContext* RendererBlinkPlatformImpl::topLevelBlameContext() { |
328 return &top_level_blame_context_; | 328 return &top_level_blame_context_; |
(...skipping 987 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1316 return &trial_token_validator_; | 1316 return &trial_token_validator_; |
1317 } | 1317 } |
1318 | 1318 |
1319 void RendererBlinkPlatformImpl::workerContextCreated( | 1319 void RendererBlinkPlatformImpl::workerContextCreated( |
1320 const v8::Local<v8::Context>& worker) { | 1320 const v8::Local<v8::Context>& worker) { |
1321 GetContentClient()->renderer()->DidInitializeWorkerContextOnWorkerThread( | 1321 GetContentClient()->renderer()->DidInitializeWorkerContextOnWorkerThread( |
1322 worker); | 1322 worker); |
1323 } | 1323 } |
1324 | 1324 |
1325 } // namespace content | 1325 } // namespace content |
OLD | NEW |