diff options
| author | Grace Kloba <klobag@google.com> | 2009-10-22 12:17:20 -0700 |
|---|---|---|
| committer | Grace Kloba <klobag@google.com> | 2009-11-07 10:39:07 -0800 |
| commit | 0691ad50ca6b7a2968a0b95e1e9bb7228dd47d65 (patch) | |
| tree | c1ceebad37ac22e334c3ce8388f8bb746de0d9f7 /core/java/android/webkit/WebChromeClient.java | |
| parent | 638d86535264b24b54698fca7e18e68571fe0bad (diff) | |
Remove "@hide pending API council" in webkit to expose
the apis to SDK.
Remove @hide in GeolocationPermissions and WebStorage
to expose them to the SDK users.
Remove @hide for freeMemory() in WebView.
Remove @hide comment in CallbackProxy and
GoogleLocationSettingManager as they are not public class.
Diffstat (limited to 'core/java/android/webkit/WebChromeClient.java')
| -rw-r--r-- | core/java/android/webkit/WebChromeClient.java | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/core/java/android/webkit/WebChromeClient.java b/core/java/android/webkit/WebChromeClient.java index 7f5b8629f16f..92676aac8c76 100644 --- a/core/java/android/webkit/WebChromeClient.java +++ b/core/java/android/webkit/WebChromeClient.java @@ -49,7 +49,6 @@ public class WebChromeClient { * @param view The WebView that initiated the callback. * @param url The icon url. * @param precomposed True if the url is for a precomposed touch icon. - * @hide pending council approval */ public void onReceivedTouchIconUrl(WebView view, String url, boolean precomposed) {} @@ -57,8 +56,6 @@ public class WebChromeClient { /** * A callback interface used by the host application to notify * the current page that its custom view has been dismissed. - * - * @hide pending council approval */ public interface CustomViewCallback { /** @@ -74,16 +71,12 @@ public class WebChromeClient { * @param view is the View object to be shown. * @param callback is the callback to be invoked if and when the view * is dismissed. - * - * @hide pending council approval */ public void onShowCustomView(View view, CustomViewCallback callback) {}; /** * Notify the host application that the current page would * like to hide its custom view. - * - * @hide pending council approval */ public void onHideCustomView() {} @@ -230,7 +223,6 @@ public class WebChromeClient { * @param quotaUpdater A callback to inform the WebCore thread that a new * app cache size is available. This callback must always be executed at * some point to ensure that the sleeping WebCore thread is woken up. - * @hide pending API council approval. */ public void onReachedMaxAppCacheSize(long spaceNeeded, long totalUsedQuota, WebStorage.QuotaUpdater quotaUpdater) { @@ -258,7 +250,6 @@ public class WebChromeClient { * will continue to occur if the script does not finish at the next check * point. * @return boolean Whether the JavaScript execution should be interrupted. - * @hide pending API Council approval */ public boolean onJsTimeout() { return true; @@ -270,7 +261,6 @@ public class WebChromeClient { * @param message The error message to report. * @param lineNumber The line number of the error. * @param sourceID The name of the source file that caused the error. - * @hide pending API council. */ public void addMessageToConsole(String message, int lineNumber, String sourceID) {} @@ -279,7 +269,6 @@ public class WebChromeClient { * This icon will be used if the Web page did not specify a poster attribute. * * @return Bitmap The icon or null if no such icon is available. - * @hide pending API Council approval */ public Bitmap getDefaultVideoPoster() { return null; @@ -290,14 +279,12 @@ public class WebChromeClient { * a <video> is loading. * * @return View The progress view. - * @hide pending API Council approval */ public View getVideoLoadingProgressView() { return null; } /** Obtains a list of all visited history items, used for link coloring - * @hide pending API Council approval */ public void getVisitedHistory(ValueCallback<String[]> callback) { } |
