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

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

Issue 2573283002: Use a static catalog manifest for the standalone Mash runner (Closed)
Patch Set: . Created 4 years 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/service_manager/public/interfaces/resolver.mojom
diff --git a/services/service_manager/public/interfaces/resolver.mojom b/services/service_manager/public/interfaces/resolver.mojom
index b6b0481fb5d2ed73d569020093776db07900e738..9f84612f72ae75e61643ed97e2635d3d7da38f89 100644
--- a/services/service_manager/public/interfaces/resolver.mojom
+++ b/services/service_manager/public/interfaces/resolver.mojom
@@ -39,7 +39,10 @@ struct ResolveResult {
// 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);
+ // Resolves |service_name| and returns a ResolveResult containing metadata
+ // from the catalog that the Service Manager uses to run an instance of it.
+ //
+ // If no entry for |service_name| is found in the catalog, |result| is null.
+ //
+ ResolveServiceName(string service_name) => (ResolveResult? result);
};

Powered by Google App Engine
This is Rietveld 408576698