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

Unified Diff: mojo/public/interfaces/application/application.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: mojo/public/interfaces/application/application.mojom
diff --git a/mojo/public/interfaces/application/application.mojom b/mojo/public/interfaces/application/application.mojom
index b1508a8e2a1a23adb97526031b134716ca2423c9..cffcb1fc7606aa30ea59360f86f8bd31dd4e7537 100644
--- a/mojo/public/interfaces/application/application.mojom
+++ b/mojo/public/interfaces/application/application.mojom
@@ -5,6 +5,7 @@
module mojo;
import "mojo/public/interfaces/application/service_provider.mojom";
+import "mojo/public/interfaces/application/shell.mojom";
// This is the primary interface implemented by every Mojo application. It
// allows the application to receive its startup arguments from the shell, and
@@ -13,7 +14,7 @@ interface Application {
// Initializes the application with the specified arguments. This method is
// guaranteed to be called before any other method is called, and will only be
// called once.
- Initialize(array<string>? args);
+ Initialize(Shell shell, array<string>? args);
// Called when another application (identified by |requestor_url|) attempts to
// open a connection to this application.

Powered by Google App Engine
This is Rietveld 408576698