Index: shell/external_application_registrar.mojom |
diff --git a/shell/external_application_registrar.mojom b/shell/external_application_registrar.mojom |
index 254df8ba9902cc9745db3b071488d30b0ec59b97..dfa0c16fa4430368889d62919eabb44291661df4 100644 |
--- a/shell/external_application_registrar.mojom |
+++ b/shell/external_application_registrar.mojom |
@@ -4,7 +4,7 @@ |
module mojo; |
-import "mojo/public/interfaces/application/shell.mojom"; |
+import "mojo/public/interfaces/application/application.mojom"; |
// This interface allows applications running outside the auspices of a Shell |
// to request registration at the given application_url. |
@@ -12,5 +12,6 @@ import "mojo/public/interfaces/application/shell.mojom"; |
// available to other apps at that URL and pass back a Shell bound to |
// an impl capable of servicing the external application's connection requests. |
interface ExternalApplicationRegistrar { |
- Register(string application_url, array<string>? args) => (Shell shell); |
+ Register(string application_url, array<string>? args) => |
+ (Application& application_request); |
}; |