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

Commit fa82e22c authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 7230642 from 812a33cb to sc-v2-release

Change-Id: Ie44b7768248c579de398b67d75fb9fc8b5b53e0f
parents 148bb94a 812a33cb
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -53,4 +53,5 @@ interface ISessionCallback {
  void onEnrollmentsRemoved(in int[] enrollmentIds);
  void onAuthenticatorIdRetrieved(in long authenticatorId);
  void onAuthenticatorIdInvalidated(in long newAuthenticatorId);
  void onSessionClosed();
}
+6 −0
Original line number Diff line number Diff line
@@ -227,4 +227,10 @@ interface ISessionCallback {
     *                           current set of enrollments.
     */
    void onAuthenticatorIdInvalidated(in long newAuthenticatorId);

    /**
     * This method notifes the client that this session has closed.
     * The client must not make any more calls to this session.
     */
    void onSessionClosed();
}
+2 −0
Original line number Diff line number Diff line
@@ -120,6 +120,8 @@ class SessionCallback : public BnSessionCallback {
        return ndk::ScopedAStatus::ok();
    }

    ndk::ScopedAStatus onSessionClosed() override { return ndk::ScopedAStatus::ok(); }

  private:
    std::promise<SessionCallbackInvocation> invocation_promise_;
};
+1 −0
Original line number Diff line number Diff line
@@ -50,4 +50,5 @@ interface ISessionCallback {
  void onEnrollmentsRemoved(in int[] enrollmentIds);
  void onAuthenticatorIdRetrieved(in long authenticatorId);
  void onAuthenticatorIdInvalidated(in long newAuthenticatorId);
  void onSessionClosed();
}
+6 −0
Original line number Diff line number Diff line
@@ -200,4 +200,10 @@ interface ISessionCallback {
     *                           current set of enrollments.
     */
    void onAuthenticatorIdInvalidated(in long newAuthenticatorId);

    /**
     * This method notifes the client that this session has closed.
     * The client must not make any more calls to this session.
     */
    void onSessionClosed();
}
Loading