Home | History | Annotate | Download | only in webkit

Lines Matching refs:origin

27  * Geolocation permissions are applied to an origin, which consists of the
29 * Geolocation API, permission must be granted for that content's origin.
31 * This class stores Geolocation permissions. An origin's permission state can
33 * an origin.
35 * When an origin attempts to use the Geolocation API, but no permission state
36 * is currently set for that origin,
38 * is called. This allows the permission state to be set for that origin.
49 * permission state for an origin.
53 * Sets the Geolocation permission state for the supplied origin.
55 * @param origin the origin for which permissions are set
56 * @param allow whether or not the origin should be allowed to use the
62 public void invoke(String origin, boolean allow, boolean retain);
94 * Gets the Geolocation permission state for the specified origin.
96 * @param origin the origin for which Geolocation permission is requested
101 * indicating whether or not the origin can use the
104 public void getAllowed(String origin, ValueCallback<Boolean> callback) {
109 * Clears the Geolocation permission state for the specified origin.
111 * @param origin the origin for which Geolocation permissions are cleared
113 public void clear(String origin) {
118 * Allows the specified origin to use the Geolocation API.
120 * @param origin the origin for which Geolocation API use is allowed
122 public void allow(String origin) {