| 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);
|
| };
|
|
|
| }
|
|
|