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

Commit 5d6c1a18 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add ACQUIRED_START message"

parents 35adcc17 448e2cf8
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
};

/**