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

Unified Diff: services/js/network_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 | « services/js/echo_apptest.cc ('k') | services/js/pingpong_apptest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/js/network_apptest.cc
diff --git a/services/js/network_apptest.cc b/services/js/network_apptest.cc
index 191d821358e14ce7bc09500b91c219925d818ff0..94381a58e4bc89ef1558def9f2e6af3f57d79522 100644
--- a/services/js/network_apptest.cc
+++ b/services/js/network_apptest.cc
@@ -51,7 +51,7 @@ TEST_F(JSNetworkTest, GetFileSize) {
uint64 file_size;
GetFileSizeCallback callback(&file_size_ok, &file_size);
network_test_service_->GetFileSize(JSAppURL(filename), callback);
- EXPECT_TRUE(network_test_service_.WaitForIncomingMethodCall());
+ EXPECT_TRUE(network_test_service_.WaitForIncomingResponse());
EXPECT_TRUE(file_size_ok);
EXPECT_EQ(file_size, static_cast<uint64>(expected_file_size));
network_test_service_->Quit();
« no previous file with comments | « services/js/echo_apptest.cc ('k') | services/js/pingpong_apptest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698