diff options
| author | Jonathan Dixon <joth@google.com> | 2013-02-25 12:29:33 -0800 |
|---|---|---|
| committer | Jonathan Dixon <joth@google.com> | 2013-02-28 13:01:48 -0800 |
| commit | 835b1fcc3193e0860ec33cca1c4cdff31f409473 (patch) | |
| tree | 743e67f4488839da51f73f094e71bc78ab546499 /core/java/android/webkit/WebIconDatabase.java | |
| parent | 42bd71e0319e8c38f7439849fef3e8a9111006be (diff) | |
Deprecate various WebView related methods
WebSettings:
PluginState - plugins depreacted and will not be supported in future.
setRenderPriotity - b/6335436
setLightTouchEnabled - b/7683972 it's s no-op.
setAppCacheMaxSize - has a sensible default and will be obsolete in
future with HTML Quota Management API. b/6236763
WebStorage.setQuotaForOrigin - same as setAppCacheMaxSize
WebView:
clearView, showFindDialog - buggy, can be achieved otherways
savePassword - not useful/usable in practice; see b/5012826
- stock browser used hidden APIs to achieve this feature
WebIconDatabase:
Other than the open() method, this does nothing useful. b/7331507
Change-Id: I01793f7b34978046eb54033477fca2da96e69c2e
Diffstat (limited to 'core/java/android/webkit/WebIconDatabase.java')
| -rw-r--r-- | core/java/android/webkit/WebIconDatabase.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/java/android/webkit/WebIconDatabase.java b/core/java/android/webkit/WebIconDatabase.java index 99f20fffd1d2..787997bd2096 100644 --- a/core/java/android/webkit/WebIconDatabase.java +++ b/core/java/android/webkit/WebIconDatabase.java @@ -25,11 +25,19 @@ import android.graphics.Bitmap; * and WebView.getIconDatabase() will return a WebIconDatabase object. This * WebIconDatabase object is a single instance and all methods operate on that * single object. + * The main use-case for this class is calling {@link WebIconDatabase#open()} + * to enable favicon functionality on all WebView instances in this process. + * + * @deprecated This class is only required when running on devices + * up to {@link android.os.Build.VERSION_CODES#JELLY_BEAN_MR2} */ +@Deprecated public class WebIconDatabase { /** * Interface for receiving icons from the database. + * @deprecated */ + @Deprecated public interface IconListener { /** * Called when the icon has been retrieved from the database and the |
