serenity/Userland/Libraries/LibWebView/Forward.h
Timothy Flynn 5c5a00dd3a Ladybird+LibWebView: Move CookieJar, Database, and History to LibWebView
These classes are used as-is in all chromes. Move them to LibWebView so
that non-Serenity chromes don't have to awkwardly reach into its headers
and sources.
2023-08-31 19:19:45 +02:00

30 lines
408 B
C++

/*
* Copyright (c) 2022, The SerenityOS developers
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Traits.h>
namespace WebView {
class ConsoleClient;
class CookieJar;
class Database;
class History;
class OutOfProcessWebView;
class ViewImplementation;
class WebContentClient;
struct CookieStorageKey;
}
namespace AK {
template<>
struct Traits<WebView::CookieStorageKey>;
}