Index: third_party/mojo/src/mojo/public/cpp/bindings/interface_ptr.h |
diff --git a/third_party/mojo/src/mojo/public/cpp/bindings/interface_ptr.h b/third_party/mojo/src/mojo/public/cpp/bindings/interface_ptr.h |
index cdca105287dc80e5af762174ec57bced7ad82f4d..f7323e84f899c4f35957a856aee718608a9f938e 100644 |
--- a/third_party/mojo/src/mojo/public/cpp/bindings/interface_ptr.h |
+++ b/third_party/mojo/src/mojo/public/cpp/bindings/interface_ptr.h |
@@ -115,8 +115,10 @@ class InterfacePtr { |
// |
// This method may only be called after the InterfacePtr has been bound to a |
// message pipe. |
- bool WaitForIncomingResponse() { |
- return internal_state_.WaitForIncomingResponse(); |
+ // |
+ // TODO(jamesr): Rename to WaitForIncomingResponse(). |
+ bool WaitForIncomingMethodCall() { |
+ return internal_state_.WaitForIncomingMethodCall(); |
} |
// Indicates whether the message pipe has encountered an error. If true, |