Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / mojo / public / interfaces / application / application.mojom
index 8807bc9..4cf2110 100644 (file)
@@ -2,18 +2,15 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-import "mojo/public/interfaces/application/service_provider.mojom"
+module mojo;
 
-module mojo {
+import "mojo/public/interfaces/application/service_provider.mojom";
 
 // Applications vend Services through the ServiceProvider interface. Services
 // implement Interfaces.
-[Client=Shell]
 interface Application {
   // Initialize is guaranteed to be called before any AcceptConnection calls.
-  Initialize(string[]? args);
+  Initialize(array<string>? args);
 
   AcceptConnection(string? requestor_url, ServiceProvider? provider);
 };
-
-}