diff options
| author | 2010-07-28 15:59:29 -0700 | |
|---|---|---|
| committer | 2010-08-02 16:35:23 -0700 | |
| commit | 9c4e33e04a0202f2207d1c738a045effb490b99f (patch) | |
| tree | d3bb1b34635b84353e681e50503f634fa209917f | |
| parent | 432c5b6c1d4181194cb82a14107b6d10105231a9 (diff) | |
New secure setting for mobile download size limit.
Change-Id: I0024d632721f59349e211c0b74dd7271423dacd5
| -rw-r--r-- | core/java/android/provider/Settings.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 7bb89f5cb14c..ea26207ba679 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -3373,6 +3373,14 @@ public final class Settings { public static final String THROTTLE_MAX_NTP_CACHE_AGE_SEC = "throttle_max_ntp_cache_age_sec"; + /** + * The maximum size, in bytes, of a download that the download manager will transfer over + * a non-wifi connection. + * @hide + */ + public static final String DOWNLOAD_MAX_BYTES_OVER_MOBILE = + "download_manager_max_bytes_over_mobile"; + /** * @hide |