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

Unified Diff: services/nacl/content_handler_main.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/pingpong_apptest.cc ('k') | services/python/mojo_url_redirector/mojo_url_redirector_apptest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/nacl/content_handler_main.cc
diff --git a/services/nacl/content_handler_main.cc b/services/nacl/content_handler_main.cc
index 2b960c2c95ad2181614adb9b6266116b32f49866..4d1a4face67bb5ccc5076f31e7a939c5039a1510 100644
--- a/services/nacl/content_handler_main.cc
+++ b/services/nacl/content_handler_main.cc
@@ -52,7 +52,7 @@ bool TempFileForURL(mojo::URLLoaderPtr& url_loader,
url_loader->Start(request.Pass(), [&response](mojo::URLResponsePtr r) {
response = r.Pass();
});
- url_loader.WaitForIncomingMethodCall();
+ url_loader.WaitForIncomingResponse();
if (response.is_null()) {
LOG(FATAL) << "something went horribly wrong (missed a callback?)";
}
« no previous file with comments | « services/js/pingpong_apptest.cc ('k') | services/python/mojo_url_redirector/mojo_url_redirector_apptest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698