Browser: Add window to inspect history

This commit is contained in:
Rafał Babiarz 2022-12-10 16:50:47 +01:00 committed by Andrew Kaster
commit 3454891d38
Notes: sideshowbarker 2024-07-17 02:23:07 +09:00
11 changed files with 259 additions and 0 deletions

View file

@ -18,6 +18,11 @@ void History::dump() const
}
}
Vector<History::URLTitlePair> History::get_all_history_entries()
{
return m_items;
}
void History::push(const URL& url, DeprecatedString const& title)
{
if (!m_items.is_empty() && m_items[m_current].url == url)