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

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

Issue 1970693002: Use mojo for Chrome Loading, Part 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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
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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 // SandboxSupport contains a map of WebFontFamily objects, which hold 303 // SandboxSupport contains a map of WebFontFamily objects, which hold
304 // WebCStrings, which become invalidated when blink is shut down. Hence, we 304 // WebCStrings, which become invalidated when blink is shut down. Hence, we
305 // need to clear that map now, just before blink::shutdown() is called. 305 // need to clear that map now, just before blink::shutdown() is called.
306 sandbox_support_.reset(); 306 sandbox_support_.reset();
307 #endif 307 #endif
308 } 308 }
309 309
310 //------------------------------------------------------------------------------ 310 //------------------------------------------------------------------------------
311 311
312 blink::WebURLLoader* RendererBlinkPlatformImpl::createURLLoader() { 312 blink::WebURLLoader* RendererBlinkPlatformImpl::createURLLoader() {
313 if (!url_loader_factory_) {
314 serviceRegistry()->connectToRemoteService(
315 mojo::GetProxy(&url_loader_factory_));
316 }
313 ChildThreadImpl* child_thread = ChildThreadImpl::current(); 317 ChildThreadImpl* child_thread = ChildThreadImpl::current();
314 // There may be no child thread in RenderViewTests. These tests can still use 318 // There may be no child thread in RenderViewTests. These tests can still use
315 // data URLs to bypass the ResourceDispatcher. 319 // data URLs to bypass the ResourceDispatcher.
316 return new content::WebURLLoaderImpl( 320 return new content::WebURLLoaderImpl(
317 child_thread ? child_thread->resource_dispatcher() : NULL, 321 child_thread ? child_thread->resource_dispatcher() : NULL,
318 base::WrapUnique(currentThread()->getWebTaskRunner()->clone())); 322 base::WrapUnique(currentThread()->getWebTaskRunner()->clone()),
323 url_loader_factory_.get());
319 } 324 }
320 325
321 blink::WebThread* RendererBlinkPlatformImpl::currentThread() { 326 blink::WebThread* RendererBlinkPlatformImpl::currentThread() {
322 if (main_thread_->isCurrentThread()) 327 if (main_thread_->isCurrentThread())
323 return main_thread_.get(); 328 return main_thread_.get();
324 return BlinkPlatformImpl::currentThread(); 329 return BlinkPlatformImpl::currentThread();
325 } 330 }
326 331
327 blink::BlameContext* RendererBlinkPlatformImpl::topLevelBlameContext() { 332 blink::BlameContext* RendererBlinkPlatformImpl::topLevelBlameContext() {
328 return &top_level_blame_context_; 333 return &top_level_blame_context_;
(...skipping 987 matching lines...) Expand 10 before | Expand all | Expand 10 after
1316 return &trial_token_validator_; 1321 return &trial_token_validator_;
1317 } 1322 }
1318 1323
1319 void RendererBlinkPlatformImpl::workerContextCreated( 1324 void RendererBlinkPlatformImpl::workerContextCreated(
1320 const v8::Local<v8::Context>& worker) { 1325 const v8::Local<v8::Context>& worker) {
1321 GetContentClient()->renderer()->DidInitializeWorkerContextOnWorkerThread( 1326 GetContentClient()->renderer()->DidInitializeWorkerContextOnWorkerThread(
1322 worker); 1327 worker);
1323 } 1328 }
1324 1329
1325 } // namespace content 1330 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698