diff options
| author | 2010-07-26 12:29:49 -0700 | |
|---|---|---|
| committer | 2010-07-26 12:29:49 -0700 | |
| commit | a2727564317312add68c9a75249e34661c279452 (patch) | |
| tree | 11561b787ef016fbe289d721a6fbe3404dd63f32 | |
| parent | b46507f6b84f0cf5a7f56cc3bf3a19feb368eecb (diff) | |
| parent | a08a0a7bee7ba09917b94e41c705a643c8e06a1a (diff) | |
am a08a0a7b: am a13a02cd: New permission for non-purgeable cache downloads.
Merge commit 'a08a0a7bee7ba09917b94e41c705a643c8e06a1a'
* commit 'a08a0a7bee7ba09917b94e41c705a643c8e06a1a':
New permission for non-purgeable cache downloads.
| -rw-r--r-- | core/java/android/provider/Downloads.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/java/android/provider/Downloads.java b/core/java/android/provider/Downloads.java index 7e1d68590f76..1b37107e1d60 100644 --- a/core/java/android/provider/Downloads.java +++ b/core/java/android/provider/Downloads.java @@ -624,6 +624,13 @@ public final class Downloads { "android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS"; /** + * The permission to downloads files to the cache partition that won't be automatically + * purged when space is needed. + */ + public static final String PERMISSION_CACHE_NON_PURGEABLE = + "android.permission.DOWNLOAD_CACHE_NON_PURGEABLE"; + + /** * The content:// URI for the data table in the provider */ public static final Uri CONTENT_URI = |