Index: mojo/public/cpp/bindings/associated_interface_ptr.h |
diff --git a/mojo/public/cpp/bindings/associated_interface_ptr.h b/mojo/public/cpp/bindings/associated_interface_ptr.h |
index e5c068e2a6fcf8d46a29dc5129a011a17c66497b..e760c7d34a053bf9ec57d9386dd15ecab1f12f63 100644 |
--- a/mojo/public/cpp/bindings/associated_interface_ptr.h |
+++ b/mojo/public/cpp/bindings/associated_interface_ptr.h |
@@ -212,7 +212,7 @@ class AssociatedInterfacePtr { |
// as soon as the request is sent, |ptr| is usable. There is no need to wait |
// until the request is bound to an implementation at the remote side. |
template <typename Interface> |
-AssociatedInterfaceRequest<Interface> GetProxy( |
+AssociatedInterfaceRequest<Interface> MakeRequest( |
AssociatedInterfacePtr<Interface>* ptr, |
AssociatedGroup* group, |
scoped_refptr<base::SingleThreadTaskRunner> runner = |
@@ -228,7 +228,7 @@ AssociatedInterfaceRequest<Interface> GetProxy( |
// Creates an associated interface proxy in its own AssociatedGroup. |
template <typename Interface> |
-AssociatedInterfaceRequest<Interface> GetProxyForTesting( |
+AssociatedInterfaceRequest<Interface> MakeRequestForTesting( |
AssociatedInterfacePtr<Interface>* ptr, |
scoped_refptr<base::SingleThreadTaskRunner> runner = |
base::ThreadTaskRunnerHandle::Get()) { |
@@ -264,7 +264,7 @@ void GetDummyProxyForTesting(AssociatedInterfacePtr<Interface>* proxy) { |
internal::MultiplexRouter::MULTI_INTERFACE, |
false, base::ThreadTaskRunnerHandle::Get()); |
std::unique_ptr<AssociatedGroup> group = router->CreateAssociatedGroup(); |
- GetProxy(proxy, group.get()); |
+ MakeRequest(proxy, group.get()); |
} |
} // namespace mojo |