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

Side by Side Diff: services/shell/public/interfaces/resolver.mojom

Issue 2338793003: services/shell: Turn on sandboxing for mojo apps.
Patch Set: . Created 4 years, 3 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 unified diff | Download patch
« no previous file with comments | « services/catalog/store.cc ('k') | services/shell/service_manager.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 module shell.mojom; 5 module shell.mojom;
6 6
7 import "mojo/common/common_custom_types.mojom"; 7 import "mojo/common/common_custom_types.mojom";
8 import "services/shell/public/interfaces/capabilities.mojom"; 8 import "services/shell/public/interfaces/capabilities.mojom";
9 9
10 // The result of a Resolve operation via Resolver. 10 // The result of a Resolve operation via Resolver.
11 struct ResolveResult { 11 struct ResolveResult {
12 // The mojo: name that was requested to be resolved. 12 // The mojo: name that was requested to be resolved.
13 string name; 13 string name;
14 14
15 // The mojo: name of the physical package supplying the requested name. This 15 // The mojo: name of the physical package supplying the requested name. This
16 // could be the same name that was passed, or the name of a package that 16 // could be the same name that was passed, or the name of a package that
17 // contains it. 17 // contains it.
18 string resolved_name; 18 string resolved_name;
19 19
20 // An additional piece of metadata that identifies what instance |name| should 20 // An additional piece of metadata that identifies what instance |name| should
21 // be run in. It's possible that |name| may provide several services that 21 // be run in. It's possible that |name| may provide several services that
22 // should be run as different instances. 22 // should be run as different instances.
23 string qualifier; 23 string qualifier;
24 24
25 // The set of capabilities provided and required by |name|. 25 // The set of capabilities provided and required by |name|.
26 CapabilitySpec? capabilities; 26 CapabilitySpec? capabilities;
27 27
28 // A path to the package file specified by |name|. 28 // A path to the package file specified by |name|.
29 mojo.common.mojom.FilePath package_path; 29 mojo.common.mojom.FilePath package_path;
30
31 // Indicates whether the service is privileged or not. If a service is
32 // privileged, then it is run without a sandbox.
33 bool privileged;
30 }; 34 };
31 35
32 // Implemented exclusively for the Service Manager's use in resolving mojo: 36 // Implemented exclusively for the Service Manager's use in resolving mojo:
33 // names and reading static manifest information. 37 // names and reading static manifest information.
34 interface Resolver { 38 interface Resolver {
35 // Resolves |mojo_name| and returns a ResolveResult containing metadata from 39 // Resolves |mojo_name| and returns a ResolveResult containing metadata from
36 // the catalog that the Service Manager uses to run an instance of it. 40 // the catalog that the Service Manager uses to run an instance of it.
37 ResolveMojoName(string mojo_name) => (ResolveResult result); 41 ResolveMojoName(string mojo_name) => (ResolveResult result);
38 }; 42 };
OLDNEW
« no previous file with comments | « services/catalog/store.cc ('k') | services/shell/service_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698