diff options
| author | Jonathan Dixon <joth@google.com> | 2012-04-12 21:21:07 +0100 |
|---|---|---|
| committer | Jonathan Dixon <joth@google.com> | 2012-04-13 16:36:16 +0100 |
| commit | 939e5040b51539be561db1d18dec18196f201f5c (patch) | |
| tree | 157ca266aa9ed93306762748fb127ab39654dc0a /core/java/android/webkit/GeolocationPermissions.java | |
| parent | f804ba131b4f543ece1973126c0ae5d4b919ee8b (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/GeolocationPermissions.java')
| -rwxr-xr-x | core/java/android/webkit/GeolocationPermissions.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/webkit/GeolocationPermissions.java b/core/java/android/webkit/GeolocationPermissions.java index 1160d5797d18..1441541d5336 100755 --- a/core/java/android/webkit/GeolocationPermissions.java +++ b/core/java/android/webkit/GeolocationPermissions.java @@ -50,7 +50,7 @@ import java.util.Vector; // Within WebKit, Geolocation permissions may be applied either temporarily // (for the duration of the page) or permanently. This class deals only with // permanent permissions. -public final class GeolocationPermissions { +public class GeolocationPermissions { /** * A callback interface used by the host application to set the Geolocation * permission state for an origin. |
