diff options
author | Android (Google) Code Review <android-gerrit@google.com> | 2009-06-15 15:34:30 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2009-06-15 15:34:30 -0700 |
commit | 7d143b89b714e077f8fd7dbac80945c76bfd9814 (patch) | |
tree | 204c3e252958d0afa4a34ff9f6c234d03067cf6e /core | |
parent | 77b7d7859ab8a4ab66a31375826ddfe17dc69c07 (diff) | |
parent | ab36bcccbbd965f9252d662444aae5e717da2abb (diff) | |
download | frameworks_base-7d143b89b714e077f8fd7dbac80945c76bfd9814.zip frameworks_base-7d143b89b714e077f8fd7dbac80945c76bfd9814.tar.gz frameworks_base-7d143b89b714e077f8fd7dbac80945c76bfd9814.tar.bz2 |
Merge change 4245 into donut
* changes:
Add the extra data definition for append location in the VIEW request to the Browser.
Diffstat (limited to 'core')
-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 0bab2a7..5a432bf 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[] { |