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

Unified Diff: mojo/public/interfaces/service_provider/service_provider.mojom

Issue 423613002: Mojo: split up service_provider.mojom (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 5 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
« no previous file with comments | « mojo/public/interfaces/service_provider/BUILD.gn ('k') | mojo/service_manager/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/interfaces/service_provider/service_provider.mojom
diff --git a/mojo/public/interfaces/service_provider/service_provider.mojom b/mojo/public/interfaces/service_provider/service_provider.mojom
deleted file mode 100644
index de7ddf539b4323a9ebf03bd5fd77f2067d500a2c..0000000000000000000000000000000000000000
--- a/mojo/public/interfaces/service_provider/service_provider.mojom
+++ /dev/null
@@ -1,32 +0,0 @@
-// 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.
-
-// Quick definitions:
-// The Shell is the finder and launcher of Applications.
-// Applications vend Services through the ServiceProvider interface.
-// Services implement Interfaces.
-// An Application uses it's Shell interface to connect to other Applications.
-module mojo {
-
-[Client=ServiceProvider]
-interface ServiceProvider {
- // Loads url. mojo:{service} will result in the the value of the
- // --origin flag to the shell being used.
- ConnectToService(string interface_name, handle<message_pipe> client_handle);
-};
-
-// TODO(davemore): Break Application & Shell into their own files.
-[Client=Application]
-interface Shell {
- // Loads url. mojo:{service} will result in the user of the value of the
- // --origin flag to the shell being used.
- ConnectToApplication(string application_url, ServiceProvider& provider);
-};
-
-[Client=Shell]
-interface Application {
- AcceptConnection(string requestor_url, ServiceProvider provider);
-};
-
-}
« no previous file with comments | « mojo/public/interfaces/service_provider/BUILD.gn ('k') | mojo/service_manager/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698