diff options
author | Janis Danisevskis <jdanis@google.com> | 2021-03-23 19:18:55 -0700 |
---|---|---|
committer | Janis Danisevskis <jdanis@google.com> | 2021-03-23 19:18:55 -0700 |
commit | fd5cba448308ddce72fbbd93c504b4183810a9c3 (patch) | |
tree | 5e66f1d287c85d9d23263470e27771bd0098ad49 /keystore/java/android/security/KeyStore.java | |
parent | d880cf50a54acd6d9d7659db42195e563a4089ed (diff) |
Keystore 2.0: Add onDeviceOffBody to AndroidKeyStoreMaintenance.
Also have KeyStore.onDeviceOffBody call
AndroidKeyStoreMaintenance.onDeviceOffBody.
Test: N/A
Bug: 171305684
Change-Id: I0b01764bfc4c5828d17ccfffb4f8dad5f3bcea6d
Diffstat (limited to 'keystore/java/android/security/KeyStore.java')
-rw-r--r-- | keystore/java/android/security/KeyStore.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/keystore/java/android/security/KeyStore.java b/keystore/java/android/security/KeyStore.java index a08f390c9fd3..b05149ef75bc 100644 --- a/keystore/java/android/security/KeyStore.java +++ b/keystore/java/android/security/KeyStore.java @@ -1204,6 +1204,7 @@ public class KeyStore { * Notify keystore that the device went off-body. */ public void onDeviceOffBody() { + AndroidKeyStoreMaintenance.onDeviceOffBody(); try { mBinder.onDeviceOffBody(); } catch (RemoteException e) { |