Index: mojo/public/interfaces/application/application.mojom |
diff --git a/mojo/public/interfaces/application/application.mojom b/mojo/public/interfaces/application/application.mojom |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a8e443eafcec241452b7d627070683d92eb06c10 |
--- /dev/null |
+++ b/mojo/public/interfaces/application/application.mojom |
@@ -0,0 +1,16 @@ |
+// Copyright 2013 The Chromium Authors. All rights reserved. |
+// 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 { |
+ |
+// Applications vend Services through the ServiceProvider interface. Services |
+// implement Interfaces. |
+[Client=Shell] |
+interface Application { |
+ AcceptConnection(string requestor_url, ServiceProvider provider); |
+}; |
+ |
+} |