Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(213)

Side by Side Diff: content/renderer/renderer_blink_platform_impl.cc

Issue 2148363004: Use std::unique_ptr<> for WebTaskRunner::clone (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/child/web_url_loader_impl.cc ('k') | content/test/test_blink_web_unit_test_support.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « content/child/web_url_loader_impl.cc ('k') | content/test/test_blink_web_unit_test_support.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698