diff options
| author | Mike LeBeau <mlebeau@android.com> | 2009-09-29 19:40:28 -0700 |
|---|---|---|
| committer | Mike LeBeau <mlebeau@android.com> | 2009-09-29 19:40:28 -0700 |
| commit | 2e4dbe70e7c0fe003dab0837fd1dba2703bdd6e2 (patch) | |
| tree | 321d46e13922fcdf8e7bec427730a6ba32f1ff61 /core/java/android/webkit/WebSettings.java | |
| parent | a4c96aa2fadb0c8642a2c8da5f8368cc3de06ed0 (diff) | |
Unhide APIs for enabling geolocation in web views. I've confirmed
with Grace that these are okay to unhide.
Diffstat (limited to 'core/java/android/webkit/WebSettings.java')
| -rw-r--r-- | core/java/android/webkit/WebSettings.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/java/android/webkit/WebSettings.java b/core/java/android/webkit/WebSettings.java index 0cfcb95eac61..4fedec93dda3 100644 --- a/core/java/android/webkit/WebSettings.java +++ b/core/java/android/webkit/WebSettings.java @@ -1005,7 +1005,6 @@ public class WebSettings { * @param databasePath String path to the directory where the Geolocation * permissions database should be saved. May be the empty string but * should never be null. - * @hide pending api council approval */ public synchronized void setGeolocationDatabasePath(String databasePath) { if (databasePath != null && !databasePath.equals(mDatabasePath)) { @@ -1122,7 +1121,6 @@ public class WebSettings { /** * Sets whether Geolocation is enabled. * @param flag Whether Geolocation should be enabled. - * @hide pending api council approval */ public synchronized void setGeolocationEnabled(boolean flag) { if (mGeolocationEnabled != flag) { |
