Merge "Add conditional permission check annotation to checkPermission methods" into tm-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
97d6cf4abe
@@ -10084,10 +10084,10 @@ package android.permission {
|
|||||||
|
|
||||||
public final class PermissionManager {
|
public final class PermissionManager {
|
||||||
method public int checkDeviceIdentifierAccess(@Nullable String, @Nullable String, @Nullable String, int, int);
|
method public int checkDeviceIdentifierAccess(@Nullable String, @Nullable String, @Nullable String, int, int);
|
||||||
method public int checkPermissionForDataDelivery(@NonNull String, @NonNull android.content.AttributionSource, @Nullable String);
|
method @RequiresPermission(value=android.Manifest.permission.UPDATE_APP_OPS_STATS, conditional=true) public int checkPermissionForDataDelivery(@NonNull String, @NonNull android.content.AttributionSource, @Nullable String);
|
||||||
method public int checkPermissionForDataDeliveryFromDataSource(@NonNull String, @NonNull android.content.AttributionSource, @Nullable String);
|
method @RequiresPermission(value=android.Manifest.permission.UPDATE_APP_OPS_STATS, conditional=true) public int checkPermissionForDataDeliveryFromDataSource(@NonNull String, @NonNull android.content.AttributionSource, @Nullable String);
|
||||||
method public int checkPermissionForPreflight(@NonNull String, @NonNull android.content.AttributionSource);
|
method public int checkPermissionForPreflight(@NonNull String, @NonNull android.content.AttributionSource);
|
||||||
method public int checkPermissionForStartDataDelivery(@NonNull String, @NonNull android.content.AttributionSource, @Nullable String);
|
method @RequiresPermission(value=android.Manifest.permission.UPDATE_APP_OPS_STATS, conditional=true) public int checkPermissionForStartDataDelivery(@NonNull String, @NonNull android.content.AttributionSource, @Nullable String);
|
||||||
method public void finishDataDelivery(@NonNull String, @NonNull android.content.AttributionSource);
|
method public void finishDataDelivery(@NonNull String, @NonNull android.content.AttributionSource);
|
||||||
method @NonNull @RequiresPermission(android.Manifest.permission.ADJUST_RUNTIME_PERMISSIONS_POLICY) public java.util.Set<java.lang.String> getAutoRevokeExemptionGrantedPackages();
|
method @NonNull @RequiresPermission(android.Manifest.permission.ADJUST_RUNTIME_PERMISSIONS_POLICY) public java.util.Set<java.lang.String> getAutoRevokeExemptionGrantedPackages();
|
||||||
method @NonNull @RequiresPermission(android.Manifest.permission.ADJUST_RUNTIME_PERMISSIONS_POLICY) public java.util.Set<java.lang.String> getAutoRevokeExemptionRequestedPackages();
|
method @NonNull @RequiresPermission(android.Manifest.permission.ADJUST_RUNTIME_PERMISSIONS_POLICY) public java.util.Set<java.lang.String> getAutoRevokeExemptionRequestedPackages();
|
||||||
|
|||||||
@@ -250,6 +250,10 @@ public final class PermissionManager {
|
|||||||
* will evaluate the permission access based on the current fg/bg state of the app and
|
* will evaluate the permission access based on the current fg/bg state of the app and
|
||||||
* leave a record that the data was accessed.
|
* leave a record that the data was accessed.
|
||||||
*
|
*
|
||||||
|
* <p>Requires the start of the AttributionSource chain to have the UPDATE_APP_OPS_STATS
|
||||||
|
* permission for the app op accesses to be given the TRUSTED_PROXY/PROXIED flags, otherwise the
|
||||||
|
* accesses will have the UNTRUSTED flags.
|
||||||
|
*
|
||||||
* @param permission The permission to check.
|
* @param permission The permission to check.
|
||||||
* @param attributionSource the permission identity
|
* @param attributionSource the permission identity
|
||||||
* @param message A message describing the reason the permission was checked
|
* @param message A message describing the reason the permission was checked
|
||||||
@@ -259,6 +263,7 @@ public final class PermissionManager {
|
|||||||
* @see #checkPermissionForPreflight(String, AttributionSource)
|
* @see #checkPermissionForPreflight(String, AttributionSource)
|
||||||
*/
|
*/
|
||||||
@PermissionCheckerManager.PermissionResult
|
@PermissionCheckerManager.PermissionResult
|
||||||
|
@RequiresPermission(value = Manifest.permission.UPDATE_APP_OPS_STATS, conditional = true)
|
||||||
public int checkPermissionForDataDelivery(@NonNull String permission,
|
public int checkPermissionForDataDelivery(@NonNull String permission,
|
||||||
@NonNull AttributionSource attributionSource, @Nullable String message) {
|
@NonNull AttributionSource attributionSource, @Nullable String message) {
|
||||||
return PermissionChecker.checkPermissionForDataDelivery(mContext, permission,
|
return PermissionChecker.checkPermissionForDataDelivery(mContext, permission,
|
||||||
@@ -278,9 +283,14 @@ public final class PermissionManager {
|
|||||||
* @return The permission check result which is either {@link #PERMISSION_GRANTED}
|
* @return The permission check result which is either {@link #PERMISSION_GRANTED}
|
||||||
* or {@link #PERMISSION_SOFT_DENIED} or {@link #PERMISSION_HARD_DENIED}.
|
* or {@link #PERMISSION_SOFT_DENIED} or {@link #PERMISSION_HARD_DENIED}.
|
||||||
*
|
*
|
||||||
|
* <p>Requires the start of the AttributionSource chain to have the UPDATE_APP_OPS_STATS
|
||||||
|
* permission for the app op accesses to be given the TRUSTED_PROXY/PROXIED flags, otherwise the
|
||||||
|
* accesses will have the UNTRUSTED flags.
|
||||||
|
*
|
||||||
* @see #checkPermissionForDataDelivery(String, AttributionSource, String)
|
* @see #checkPermissionForDataDelivery(String, AttributionSource, String)
|
||||||
*/
|
*/
|
||||||
@PermissionCheckerManager.PermissionResult
|
@PermissionCheckerManager.PermissionResult
|
||||||
|
@RequiresPermission(value = Manifest.permission.UPDATE_APP_OPS_STATS, conditional = true)
|
||||||
public int checkPermissionForStartDataDelivery(@NonNull String permission,
|
public int checkPermissionForStartDataDelivery(@NonNull String permission,
|
||||||
@NonNull AttributionSource attributionSource, @Nullable String message) {
|
@NonNull AttributionSource attributionSource, @Nullable String message) {
|
||||||
return PermissionChecker.checkPermissionForDataDelivery(mContext, permission,
|
return PermissionChecker.checkPermissionForDataDelivery(mContext, permission,
|
||||||
@@ -320,6 +330,10 @@ public final class PermissionManager {
|
|||||||
* will evaluate the permission access based on the current fg/bg state of the app and
|
* will evaluate the permission access based on the current fg/bg state of the app and
|
||||||
* leave a record that the data was accessed.
|
* leave a record that the data was accessed.
|
||||||
*
|
*
|
||||||
|
* <p>Requires the start of the AttributionSource chain to have the UPDATE_APP_OPS_STATS
|
||||||
|
* permission for the app op accesses to be given the TRUSTED_PROXY/PROXIED flags, otherwise the
|
||||||
|
* accesses will have the UNTRUSTED flags.
|
||||||
|
*
|
||||||
* @param permission The permission to check.
|
* @param permission The permission to check.
|
||||||
* @param attributionSource the permission identity
|
* @param attributionSource the permission identity
|
||||||
* @param message A message describing the reason the permission was checked
|
* @param message A message describing the reason the permission was checked
|
||||||
@@ -329,6 +343,7 @@ public final class PermissionManager {
|
|||||||
* @see #checkPermissionForPreflight(String, AttributionSource)
|
* @see #checkPermissionForPreflight(String, AttributionSource)
|
||||||
*/
|
*/
|
||||||
@PermissionCheckerManager.PermissionResult
|
@PermissionCheckerManager.PermissionResult
|
||||||
|
@RequiresPermission(value = Manifest.permission.UPDATE_APP_OPS_STATS, conditional = true)
|
||||||
public int checkPermissionForDataDeliveryFromDataSource(@NonNull String permission,
|
public int checkPermissionForDataDeliveryFromDataSource(@NonNull String permission,
|
||||||
@NonNull AttributionSource attributionSource, @Nullable String message) {
|
@NonNull AttributionSource attributionSource, @Nullable String message) {
|
||||||
return PermissionChecker.checkPermissionForDataDeliveryFromDataSource(mContext, permission,
|
return PermissionChecker.checkPermissionForDataDeliveryFromDataSource(mContext, permission,
|
||||||
|
|||||||
Reference in New Issue
Block a user