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

Unified Diff: mojo/services/launcher/launcher.cc

Issue 403573006: Mojo: Pass URLLoader to ResponseDetails as interface rather than handle. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | mojo/services/public/interfaces/navigation/navigation.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/launcher/launcher.cc
diff --git a/mojo/services/launcher/launcher.cc b/mojo/services/launcher/launcher.cc
index 97a29c3f137042e25ecae8f3c119266cd3ba12b6..76d4d8f68f8c2bcf149fac9417c190ec2a33dff7 100644
--- a/mojo/services/launcher/launcher.cc
+++ b/mojo/services/launcher/launcher.cc
@@ -166,7 +166,7 @@ void LaunchInstance::OnReceivedResponse(URLResponsePtr response) {
} else {
navigation::ResponseDetailsPtr nav_response(
navigation::ResponseDetails::New());
- nav_response->loader_handle = url_loader_.PassMessagePipe();
+ nav_response->loader = url_loader_.Pass();
nav_response->response = response.Pass();
String response_url = nav_response->response->url;
callback_.Run(handler_url, response_url, nav_response.Pass());
« no previous file with comments | « no previous file | mojo/services/public/interfaces/navigation/navigation.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698