diff options
author | Android (Google) Code Review <android-gerrit@google.com> | 2009-07-14 17:20:22 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2009-07-14 17:20:22 -0700 |
commit | 5628711a6f5674070da674488513d2e1b03c4959 (patch) | |
tree | cb86bfb10a71aba86e3583936c6c97f7128eb383 | |
parent | 1fffbd97fa756ef7d3e7e885a5c1c8bb64380c20 (diff) | |
parent | 278a802dcd5d5454143127d0d59a6eb0ba96ecc7 (diff) | |
download | frameworks_base-5628711a6f5674070da674488513d2e1b03c4959.zip frameworks_base-5628711a6f5674070da674488513d2e1b03c4959.tar.gz frameworks_base-5628711a6f5674070da674488513d2e1b03c4959.tar.bz2 |
Merge change 6855 into donut
* changes:
Add a Gservices setting to control if we send up multipart protocol buffers
-rw-r--r-- | core/java/android/provider/Settings.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 6ed1ac8..bf6003e 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -2692,6 +2692,12 @@ public final class Settings { public static final String GMAIL_NUM_RETRY_UPHILL_OP = "gmail_discard_error_uphill_op"; /** + * Controls if the protocol buffer version of the protocol will use a multipart request for + * attachment uploads. Value must be an integer where non-zero means true. Defaults to 0. + */ + public static final String GMAIL_USE_MULTIPART_PROTOBUF = "gmail_use_multipart_protobuf"; + + /** * the transcoder URL for mobile devices. */ public static final String TRANSCODER_URL = "mobile_transcoder_url"; |