FxA: Expose the process_event method on android

This commit is contained in:
Ben Dean-Kawamura 2023-12-20 10:21:35 -05:00 коммит произвёл bendk
Родитель e5635fa09c
Коммит b491756369
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -88,6 +88,14 @@ class FxaClient(inner: FirefoxAccount, persistCallback: PersistCallback?) : Auto
}
}
/**
* Process an event (login, logout, etc).
*
* On success, update the current state and return it.
* On error, the current state will remain the same.
*/
fun processEvent(event: FxaEvent): FxaState = this.inner.processEvent(event)
/**
* Get the high-level authentication state of the client
*/