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

Unified Diff: mojo/services/public/interfaces/launcher/launcher.mojom

Issue 345773003: Mojo: teach launcher about mojo:// URLs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup Created 6 years, 6 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
« mojo/services/launcher/launcher.cc ('K') | « mojo/services/launcher/launcher.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/public/interfaces/launcher/launcher.mojom
diff --git a/mojo/services/public/interfaces/launcher/launcher.mojom b/mojo/services/public/interfaces/launcher/launcher.mojom
index 9d04361f5a3be9a40c4472d57d49cdb2b9481fa7..28b77be6a3adf481c10c08ef4a61557308e11aef 100644
--- a/mojo/services/public/interfaces/launcher/launcher.mojom
+++ b/mojo/services/public/interfaces/launcher/launcher.mojom
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-import "../network/url_loader.mojom"
+import "../../../navigation/navigation.mojom"
module mojo.launcher {
@@ -13,8 +13,10 @@ interface Launcher {
[Client=Launcher]
interface LauncherClient {
- OnLaunch(string handler_url, mojo.URLResponse response,
- handle<data_pipe_consumer> response_body_stream);
+ // |response| can be NULL if a launcher did not need to perform a request to
+ // determine handler_url.
+ OnLaunch(string requested_url, string handler_url,
+ mojo.navigation.ResponseDetails response);
};
}
« mojo/services/launcher/launcher.cc ('K') | « mojo/services/launcher/launcher.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698