diff options
author | Jeff Sharkey <jsharkey@android.com> | 2012-08-28 16:23:31 -0700 |
---|---|---|
committer | Jeff Sharkey <jsharkey@android.com> | 2012-08-28 17:03:21 -0700 |
commit | ee016ac51e9ca82eb9bc92795e61af02f67ae8c8 (patch) | |
tree | 5469022e25b998d5c18e417bf70f8586123ccc87 /dalvik | |
parent | 8751386c57d1d0d8d8f0db1660214925fb248a10 (diff) | |
download | libcore-ee016ac51e9ca82eb9bc92795e61af02f67ae8c8.zip libcore-ee016ac51e9ca82eb9bc92795e61af02f67ae8c8.tar.gz libcore-ee016ac51e9ca82eb9bc92795e61af02f67ae8c8.tar.bz2 |
Access to all users' external storage.
System services holding this permission have external storage bound
one level higher, giving them access to all users' files.
Bug: 7003520
Change-Id: I8a81582f9ef07089a1fab3e8f6c3ffe657bb1c1b
Diffstat (limited to 'dalvik')
-rw-r--r-- | dalvik/src/main/java/dalvik/system/Zygote.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dalvik/src/main/java/dalvik/system/Zygote.java b/dalvik/src/main/java/dalvik/system/Zygote.java index a649025..c06314e 100644 --- a/dalvik/src/main/java/dalvik/system/Zygote.java +++ b/dalvik/src/main/java/dalvik/system/Zygote.java @@ -47,6 +47,8 @@ public class Zygote { public static final int MOUNT_EXTERNAL_SINGLEUSER = 1; /** Multi-user external storage should be mounted. */ public static final int MOUNT_EXTERNAL_MULTIUSER = 2; + /** All multi-user external storage should be mounted. */ + public static final int MOUNT_EXTERNAL_MULTIUSER_ALL = 3; /** * When set by the system server, all subsequent apps will be launched in |