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

Unified Diff: mojo/shell/public/interfaces/shell_resolver.mojom

Issue 1877753003: Move mojo\shell to services\shell (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@62scan
Patch Set: . Created 4 years, 8 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/shell/public/interfaces/shell_client_factory.mojom ('k') | mojo/shell/public/java/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/public/interfaces/shell_resolver.mojom
diff --git a/mojo/shell/public/interfaces/shell_resolver.mojom b/mojo/shell/public/interfaces/shell_resolver.mojom
deleted file mode 100644
index 0c4e841858ccdf01b6b7321158971e0a77f153bf..0000000000000000000000000000000000000000
--- a/mojo/shell/public/interfaces/shell_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 mojo.shell.mojom;
-
-import "mojo/shell/public/interfaces/capabilities.mojom";
-
-// The result of a Resolve operation via ShellResolver.
-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 file URL to the package specified by |name|.
- // TODO(beng): What if resolved_mojo_name needs to be re-resolved?
- string package_url;
-};
-
-// Implemented exclusively for the Mojo Shell's use in resolving mojo: names
-// and reading static manifest information.
-interface ShellResolver {
- // Resolves |mojo_name| and returns a ResolveResult containing metadata from
- // the catalog that the Shell uses to run an instance of it.
- ResolveMojoName(string mojo_name) => (ResolveResult result);
-};
« no previous file with comments | « mojo/shell/public/interfaces/shell_client_factory.mojom ('k') | mojo/shell/public/java/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698