Hide android.webkit.PermissionRequest.RESOURCE_GEOLOCATION

We haven't hooked this constant up yet, so @hide from the API until
it's ready.

Bug: 14668406
Change-Id: Ia0bb2ac1deaa0575d5ceb509997ca27f930040b0
This commit is contained in:
Ben Murdoch
2014-05-09 13:25:48 +01:00
parent 2ac9979179
commit b2e56e34de
2 changed files with 1 additions and 1 deletions

View File

@@ -33735,7 +33735,6 @@ package android.webkit {
method public abstract long getResources();
method public abstract void grant(long);
field public static final long RESOURCE_AUDIO_CAPTURE = 4L; // 0x4L
field public static final long RESOURCE_GEOLOCATION = 1L; // 0x1L
field public static final long RESOURCE_VIDEO_CAPTURE = 2L; // 0x2L
}

View File

@@ -28,6 +28,7 @@ import android.net.Uri;
public interface PermissionRequest {
/**
* Resource belongs to geolocation service.
* @hide - see b/14668406
*/
public final static long RESOURCE_GEOLOCATION = 1 << 0;
/**