blob: fa760b77cc378a5f8611e03b4e49fff9be140627 [file] [log] [blame]
/*
* Copyright (C) 2014 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.webkit;
import android.net.Uri;
/**
* This interface defines a permission request and is used when web content
* requests access to protected resources.
*
* Either {@link #grant(long) grant()} or {@link #deny()} must be called in UI
* thread to respond to the request.
*/
public interface PermissionRequest {
/**
* Resource belongs to geolocation service.
* @hide - see b/14668406
*/
public final static long RESOURCE_GEOLOCATION = 1 << 0;
/**
* Resource belongs to video capture device, like camera.
*/
public final static long RESOURCE_VIDEO_CAPTURE = 1 << 1;
/**
* Resource belongs to audio capture device, like microphone.
*/
public final static long RESOURCE_AUDIO_CAPTURE = 1 << 2;
/**
* @return the origin of web content which attempt to access the restricted
* resources.
*/
public Uri getOrigin();
/**
* @return a bit mask of resources the web content wants to access.
*/
public long getResources();
/**
* Call this method to grant origin the permission to access the given resources.
* The granted permission is only valid for this WebView.
*
* @param resources the resources granted to be accessed by origin, to grant
* request, the requested resources returned by {@link #getResources()}
* must be equals or a subset of granted resources.
* This parameter is designed to avoid granting permission by accident
* especially when new resources are requested by web content.
*/
public void grant(long resources);
/**
* Call this method to deny the request.
*/
public void deny();
}