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

Unified Diff: examples/apptest/example_apptest.cc

Issue 1150563003: Rename InterfacePtr's WaitForIncomingMethodCall() -> WaitForIncomingResponse(). (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | examples/surfaces_app/child_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: examples/apptest/example_apptest.cc
diff --git a/examples/apptest/example_apptest.cc b/examples/apptest/example_apptest.cc
index 1f57fddb8774f347c61e1d44b6b9e7e6f55c0f54..3b760c5f919d3603948f6a15db72b09e8048e694 100644
--- a/examples/apptest/example_apptest.cc
+++ b/examples/apptest/example_apptest.cc
@@ -37,7 +37,7 @@ TEST_F(ExampleApplicationTest, PingServiceToPong) {
uint16_t pong_value = 0u;
example_service_->Ping(1u,
[&pong_value](uint16_t value) { pong_value = value; });
- EXPECT_TRUE(example_service_.WaitForIncomingMethodCall());
+ EXPECT_TRUE(example_service_.WaitForIncomingResponse());
// Test making a call and receiving the reply.
EXPECT_EQ(1u, pong_value);
}
« no previous file with comments | « no previous file | examples/surfaces_app/child_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698