pub fn get_visited_urls(
db: &PlacesDb,
start: Timestamp,
end: Timestamp,
include_remote: bool,
) -> Result<Vec<String>>
Expand description
Get the set of urls that were visited between start
and end
. Only considers local visits
unless you pass in include_remote
.