Merge "Make scheduleWatchdog oneway" into udc-qpr-dev

This commit is contained in:
Diya Bera
2023-07-06 16:22:05 +00:00
committed by Android (Google) Code Review
2 changed files with 2 additions and 2 deletions

View File

@@ -177,5 +177,5 @@ interface IFaceService {
// Internal operation used to clear face biometric scheduler. // Internal operation used to clear face biometric scheduler.
// Ensures that the scheduler is not stuck. // Ensures that the scheduler is not stuck.
@EnforcePermission("USE_BIOMETRIC_INTERNAL") @EnforcePermission("USE_BIOMETRIC_INTERNAL")
void scheduleWatchdog(); oneway void scheduleWatchdog();
} }

View File

@@ -213,5 +213,5 @@ interface IFingerprintService {
// Internal operation used to clear fingerprint biometric scheduler. // Internal operation used to clear fingerprint biometric scheduler.
// Ensures that the scheduler is not stuck. // Ensures that the scheduler is not stuck.
@EnforcePermission("USE_BIOMETRIC_INTERNAL") @EnforcePermission("USE_BIOMETRIC_INTERNAL")
void scheduleWatchdog(); oneway void scheduleWatchdog();
} }