diff options
| author | 2009-06-29 20:18:08 -0700 | |
|---|---|---|
| committer | 2009-06-29 20:18:08 -0700 | |
| commit | 2187f30d147fddafe1304af45bb43e8fedf06cea (patch) | |
| tree | 172c983613b41f684e466e8d55de8a99a01a4a5a | |
| parent | cfd205c3034dae87f2ded3dc3585e42e6057ec0e (diff) | |
| parent | a1590586e4c02e50d14cc99018be2c419f5a07b9 (diff) | |
am a1590586: Merge change 5578 into donut
Merge commit 'a1590586e4c02e50d14cc99018be2c419f5a07b9'
* commit 'a1590586e4c02e50d14cc99018be2c419f5a07b9':
Add new EXTRA_POST_DATA extra key for use in VIEW intents to Browser.
| -rw-r--r-- | core/java/android/provider/Browser.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/core/java/android/provider/Browser.java b/core/java/android/provider/Browser.java index 2490b8acd229..b95e4e1673b9 100644 --- a/core/java/android/provider/Browser.java +++ b/core/java/android/provider/Browser.java @@ -91,6 +91,17 @@ public class Browser { */ public static final String EXTRA_APPEND_LOCATION = "com.android.browser.append_location"; + /** + * The name of the extra data in the VIEW intent. The data is in the format of + * a byte array. + * <p> + * Any value sent here will be passed in the http request to the provided url as post data. + * <p> + * pending api approval + * @hide + */ + public static final String EXTRA_POST_DATA = "com.android.browser.post_data"; + /* if you change column order you must also change indices below */ public static final String[] HISTORY_PROJECTION = new String[] { |