summaryrefslogtreecommitdiffstats
path: root/mash
diff options
context:
space:
mode:
authorben <ben@chromium.org>2016-03-14 17:12:07 -0700
committerCommit bot <commit-bot@chromium.org>2016-03-15 00:14:05 +0000
commite7480506ff06e1e3e11b9d8284631d2f595a12ed (patch)
tree0e5df3be7638673f0d1c9f108f58b5a744be6579 /mash
parentd1450115d580372f2eed209ef2428812c1fb000f (diff)
downloadchromium_src-e7480506ff06e1e3e11b9d8284631d2f595a12ed.zip
chromium_src-e7480506ff06e1e3e11b9d8284631d2f595a12ed.tar.gz
chromium_src-e7480506ff06e1e3e11b9d8284631d2f595a12ed.tar.bz2
Fix mash_init
The init app was missing the bit allowing it to create apps as other users. R=sky@chromium.org Review URL: https://codereview.chromium.org/1800773003 Cr-Commit-Position: refs/heads/master@{#381124}
Diffstat (limited to 'mash')
-rw-r--r--mash/init/manifest.json8
1 files changed, 7 insertions, 1 deletions
diff --git a/mash/init/manifest.json b/mash/init/manifest.json
index d55a0a75..c407094 100644
--- a/mash/init/manifest.json
+++ b/mash/init/manifest.json
@@ -1,5 +1,11 @@
{
+ "manifest_version": 1,
"name": "mojo:mash_init",
"display_name": "Root Controller",
- "capabilities": { "*": [ "*" ] }
+ "capabilities": {
+ "required": {
+ "*": { "interfaces": [ "*" ] },
+ "mojo:shell": { "classes": ["user_id"] }
+ }
+ }
}