interface HistoryTrackingDelegate
(source)
An interface used for providing history information to an engine (e.g. for link highlighting), and receiving history updates from the engine (visits to URLs, title changes).
Even though this interface is defined at the "concept" layer, its get* methods are tailored to two types of engines which we support (system's WebView and GeckoView).
abstract fun getVisited(uris: List<String>, privateMode: Boolean): Deferred<List<Boolean>>
An engine needs to know "visited" (true/false) status for provided URIs. abstract fun getVisited(privateMode: Boolean): Deferred<List<String>>
An engine needs to know a list of all visited URIs. |
|
abstract suspend fun onTitleChanged(uri: String, title: String, privateMode: Boolean): Unit
Title changed for a given URI. |
|
abstract suspend fun onVisited(uri: String, isReload: Boolean = false, privateMode: Boolean): Unit
A URI visit happened that an engine considers worthy of being recorded in browser's history. |