diff options
author | 2009-06-15 15:27:17 -0700 | |
---|---|---|
committer | 2009-06-15 15:27:17 -0700 | |
commit | ab36bcccbbd965f9252d662444aae5e717da2abb (patch) | |
tree | d234462b9237aa07fe3debe34cec04dbc5c6d16b | |
parent | cb9534f92007b47d86cccc306dc75ca2d64bd197 (diff) |
Add the extra data definition for append location in the VIEW request to the Browser.
-rw-r--r-- | core/java/android/provider/Browser.java | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/core/java/android/provider/Browser.java b/core/java/android/provider/Browser.java index 0bab2a7d19ca..5a432bf4e896 100644 --- a/core/java/android/provider/Browser.java +++ b/core/java/android/provider/Browser.java @@ -78,7 +78,14 @@ public class Browser { * @hide */ public static final String EXTRA_INLINE_FAILURL ="com.android.browser.inline.failurl"; - + + /** + * The name of the extra data in the VIEW intent. If the Browser is handling + * the intent and the setting for USE_LOCATION_FOR_SERVICES is allow, the + * Browser will send the location in the POST data. + */ + public static final String EXTRA_APPEND_LOCATION = "com.android.browser.append_location"; + /* if you change column order you must also change indices below */ public static final String[] HISTORY_PROJECTION = new String[] { |