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

Unified Diff: services/shell/public/interfaces/resolver.mojom

Issue 2419723002: Move services/shell to services/service_manager (Closed)
Patch Set: rebase Created 4 years, 2 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: services/shell/public/interfaces/resolver.mojom
diff --git a/services/shell/public/interfaces/resolver.mojom b/services/shell/public/interfaces/resolver.mojom
deleted file mode 100644
index bee6c98624d71a1c69e6fd7b966465795fe68f4f..0000000000000000000000000000000000000000
--- a/services/shell/public/interfaces/resolver.mojom
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright 2016 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.
-
-module shell.mojom;
-
-import "mojo/common/common_custom_types.mojom";
-import "services/shell/public/interfaces/capabilities.mojom";
-
-// The result of a Resolve operation via Resolver.
-struct ResolveResult {
- // The mojo: name that was requested to be resolved.
- string name;
-
- // The mojo: name of the physical package supplying the requested name. This
- // could be the same name that was passed, or the name of a package that
- // contains it.
- string resolved_name;
-
- // An additional piece of metadata that identifies what instance |name| should
- // be run in. It's possible that |name| may provide several services that
- // should be run as different instances.
- string qualifier;
-
- // The set of capabilities provided and required by |name|.
- CapabilitySpec? capabilities;
-
- // A path to the package file specified by |name|.
- mojo.common.mojom.FilePath package_path;
-};
-
-// Implemented exclusively for the Service Manager's use in resolving mojo:
-// names and reading static manifest information.
-interface Resolver {
- // Resolves |mojo_name| and returns a ResolveResult containing metadata from
- // the catalog that the Service Manager uses to run an instance of it.
- ResolveMojoName(string mojo_name) => (ResolveResult result);
-};
« no previous file with comments | « services/shell/public/interfaces/interface_provider.mojom ('k') | services/shell/public/interfaces/service.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698