Files
ladybird/Libraries/LibWebView/Forward.h
Andreas Kling 54f14609f4 LibWebView: Add a SQL history store
Add a HistoryStore abstraction with transient and persisted backends,
normalize recorded URLs, and skip non-browsable schemes.

Cover lookup and persistence in TestHistoryStore so history-driven
features can share one backend.
2026-04-16 21:01:28 +02:00

49 lines
792 B
C++

/*
* Copyright (c) 2022, The SerenityOS developers
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Platform.h>
#include <AK/Traits.h>
#include <LibWebView/Export.h>
namespace WebView {
class Action;
class Application;
class Autocomplete;
class BookmarkStore;
class CookieJar;
class HistoryStore;
class Menu;
class OutOfProcessWebView;
class ProcessManager;
class Settings;
class ViewImplementation;
class WebContentClient;
class WebUI;
struct Attribute;
struct AutocompleteEngine;
struct BookmarkItem;
struct BrowserOptions;
struct ConsoleOutput;
struct CookieStorageKey;
struct DOMNodeProperties;
struct Mutation;
struct ProcessHandle;
struct SearchEngine;
struct WebContentOptions;
}
namespace AK {
template<>
struct Traits<WebView::CookieStorageKey>;
}