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

Unified Diff: shell/external_application_registrar.mojom

Issue 868463008: Remove Client relationship between mojo.Shell/mojo.Application (Closed) Base URL: git@github.com:domokit/mojo.git@app_impl_init
Patch Set: fix android Created 5 years, 11 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
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);
};

Powered by Google App Engine
This is Rietveld 408576698