Merge "Only check INTERACT_ACROSS_USERS_FULL when user handle is not current" into main

This commit is contained in:
Chris Antol
2024-08-30 01:10:54 +00:00
committed by Android (Google) Code Review
2 changed files with 10 additions and 10 deletions

View File

@@ -250,7 +250,7 @@ public class AppInfoWithHeaderTest {
}
@Override
protected boolean hasInteractAcrossUsersPermission() {
protected boolean hasInteractAcrossUsersFullPermission() {
return true;
}
@@ -267,7 +267,7 @@ public class AppInfoWithHeaderTest {
private static final class TestFragmentWithoutPermission extends TestFragment {
@Override
protected boolean hasInteractAcrossUsersPermission() {
protected boolean hasInteractAcrossUsersFullPermission() {
return false;
}
}