Index: third_party/mojo/src/mojo/public/interfaces/application/application.mojom |
diff --git a/third_party/mojo/src/mojo/public/interfaces/application/application.mojom b/third_party/mojo/src/mojo/public/interfaces/application/application.mojom |
index b1508a8e2a1a23adb97526031b134716ca2423c9..cffcb1fc7606aa30ea59360f86f8bd31dd4e7537 100644 |
--- a/third_party/mojo/src/mojo/public/interfaces/application/application.mojom |
+++ b/third_party/mojo/src/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. |