summaryrefslogtreecommitdiff
path: root/core/java/android/webkit/WebIconDatabase.java
diff options
context:
space:
mode:
authorJonathan Dixon <joth@google.com>2012-04-12 21:21:07 +0100
committerJonathan Dixon <joth@google.com>2012-04-13 16:36:16 +0100
commit939e5040b51539be561db1d18dec18196f201f5c (patch)
tree157ca266aa9ed93306762748fb127ab39654dc0a /core/java/android/webkit/WebIconDatabase.java
parentf804ba131b4f543ece1973126c0ae5d4b919ee8b (diff)
Two WebView API cleanups
- remove final from classes which we will need to provide subclasses in future: CookieManager, GeolocationPermissions, WebIconDatabase and WebStorage. None of these have published constructors, so applications cannot subclass them anyway. - Also convert some protected members of JsResult to private, as its of no use to legal subclasses, and applications cannot subclass it. Change-Id: Iaca9d2db31e25853b6c55feae41d9e7774087479
Diffstat (limited to 'core/java/android/webkit/WebIconDatabase.java')
-rw-r--r--core/java/android/webkit/WebIconDatabase.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/webkit/WebIconDatabase.java b/core/java/android/webkit/WebIconDatabase.java
index 54dfab366d57..9299b714edea 100644
--- a/core/java/android/webkit/WebIconDatabase.java
+++ b/core/java/android/webkit/WebIconDatabase.java
@@ -35,7 +35,7 @@ import java.util.Vector;
* WebIconDatabase object is a single instance and all methods operate on that
* single object.
*/
-public final class WebIconDatabase {
+public class WebIconDatabase {
private static final String LOGTAG = "WebIconDatabase";
// Global instance of a WebIconDatabase
private static WebIconDatabase sIconDatabase;