android-components / mozilla.components.concept.engine.history / HistoryTrackingDelegate

HistoryTrackingDelegate

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).

Functions

getVisited

abstract suspend fun getVisited(uris: List<String>): List<Boolean>

An engine needs to know "visited" (true/false) status for provided URIs.

abstract suspend fun getVisited(): List<String>

An engine needs to know a list of all visited URIs.

onTitleChanged

abstract suspend fun onTitleChanged(uri: String, title: String): Unit

Title changed for a given URI.

onVisited

abstract suspend fun onVisited(uri: String, isReload: Boolean = false): Unit

A URI visit happened that an engine considers worthy of being recorded in browser's history.