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

Unified Diff: content/common/associated_interface_provider_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/child/resource_dispatcher.cc ('k') | content/common/service_manager/child_connection.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/associated_interface_provider_impl.cc
diff --git a/content/common/associated_interface_provider_impl.cc b/content/common/associated_interface_provider_impl.cc
index 3154596fba204be3a90a145e4075dd9e9e4d6b8b..454250d1d968c4853fb526e2f52db1ef7d9dc8c0 100644
--- a/content/common/associated_interface_provider_impl.cc
+++ b/content/common/associated_interface_provider_impl.cc
@@ -15,9 +15,9 @@ class AssociatedInterfaceProviderImpl::LocalProvider
explicit LocalProvider(mojom::AssociatedInterfaceProviderAssociatedPtr* proxy)
: route_provider_binding_(this),
associated_interface_provider_binding_(this) {
- route_provider_binding_.Bind(mojo::GetProxy(&route_provider_ptr_));
+ route_provider_binding_.Bind(mojo::MakeRequest(&route_provider_ptr_));
route_provider_ptr_->GetRoute(
- 0, mojo::GetProxy(proxy, route_provider_ptr_.associated_group()));
+ 0, mojo::MakeRequest(proxy, route_provider_ptr_.associated_group()));
}
~LocalProvider() override {}
« no previous file with comments | « content/child/resource_dispatcher.cc ('k') | content/common/service_manager/child_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698