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

Unified Diff: content/renderer/render_thread_impl.cc

Issue 2589663003: mojo:: Rename mojo::GetProxy() to mojo::MakeRequest() (Closed)
Patch Set: Rebase Created 4 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | content/shell/renderer/layout_test/blink_test_runner.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_thread_impl.cc
diff --git a/content/renderer/render_thread_impl.cc b/content/renderer/render_thread_impl.cc
index 4157af7166ea84d5915ca6159607a65efc59f8de..2e4e4b991ebb35670a623fa92773c18fb8386908 100644
--- a/content/renderer/render_thread_impl.cc
+++ b/content/renderer/render_thread_impl.cc
@@ -860,7 +860,7 @@ void RenderThreadImpl::Init(
// ChildMemoryCoordinatorImpl.
// https://codereview.chromium.org/2094583002/#msg52
mojom::MemoryCoordinatorHandlePtr parent_coordinator;
- GetRemoteInterfaces()->GetInterface(mojo::GetProxy(&parent_coordinator));
+ GetRemoteInterfaces()->GetInterface(mojo::MakeRequest(&parent_coordinator));
memory_coordinator_ = CreateChildMemoryCoordinator(
std::move(parent_coordinator), this);
}
@@ -889,7 +889,7 @@ void RenderThreadImpl::Init(
#endif
} else {
ChildThread::Get()->GetRemoteInterfaces()->GetInterface(
- mojo::GetProxy(&manager_ptr));
+ mojo::MakeRequest(&manager_ptr));
}
discardable_shared_memory_manager_ = base::MakeUnique<
@@ -912,7 +912,7 @@ void RenderThreadImpl::Init(
base::Unretained(embedded_worker_dispatcher_.get())));
GetRemoteInterfaces()->GetInterface(
- mojo::GetProxy(&storage_partition_service_));
+ mojo::MakeRequest(&storage_partition_service_));
#if defined(OS_LINUX)
ChildProcess::current()->SetIOThreadPriority(base::ThreadPriority::DISPLAY);
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | content/shell/renderer/layout_test/blink_test_runner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698