Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 448e2cf8 authored by Kevin Chyn's avatar Kevin Chyn
Browse files

Add ACQUIRED_START message

Fixes: 123520106
Bug: 117060268

Test: Builds
Change-Id: Ie2fda4f2cdbae1d9b5f2ed08975f3cd8e98c169b
parent 543d779e
Loading
Loading
Loading
Loading
+11 −1
Original line number Diff line number Diff line
@@ -323,10 +323,20 @@ enum FaceAcquiredInfo : int32_t {
     */
    FACE_OBSCURED = 19,

    /**
     * This message represents the earliest message sent at the beginning of the authentication
     * pipeline. It is expected to be used to measure latency. For example, in a camera-based
     * authentication system it's expected to be sent prior to camera initialization. Note this
     * should be sent whenever authentication is restarted (see IBiometricsFace#userActivity).
     * The framework will measure latency based on the time between the last START message and the
     * onAuthenticated callback.
     */
    START = 20,

    /**
     * Used to enable a vendor-specific acquisition message.
     */
    VENDOR = 20
    VENDOR = 21
};

/**