Update the VTS test

Bug: 172593978
Test: atest VtsHalBiometricsFaceTargetTest
Change-Id: I3d7c49a173fa7296a1eb2334cce9cf0c3d745fce
This commit is contained in:
Ilya Matyukhin
2021-01-22 11:48:59 -08:00
parent 26b20b9f64
commit f2d3886a2c

View File

@@ -103,6 +103,15 @@ class SessionCallback : public BnSessionCallback {
return ndk::ScopedAStatus::ok();
}
ndk::ScopedAStatus onFeaturesRetrieved(const std::vector<Feature>& /*features*/,
int32_t /*enrollmentId*/) override {
return ndk::ScopedAStatus::ok();
}
ndk::ScopedAStatus onFeatureSet(int32_t /*enrollmentId*/, Feature /*feature*/) override {
return ndk::ScopedAStatus::ok();
}
ndk::ScopedAStatus onAuthenticatorIdRetrieved(int64_t /*authenticatorId*/) override {
return ndk::ScopedAStatus::ok();
}