mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 09:00:22 +00:00
33 lines
478 B
C++
33 lines
478 B
C++
/*
|
|
* Copyright (c) 2022, The SerenityOS developers
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Traits.h>
|
|
|
|
namespace WebView {
|
|
|
|
class CookieJar;
|
|
class Database;
|
|
class InspectorClient;
|
|
class OutOfProcessWebView;
|
|
class ProcessManager;
|
|
class ViewImplementation;
|
|
class WebContentClient;
|
|
|
|
struct Attribute;
|
|
struct CookieStorageKey;
|
|
struct ProcessHandle;
|
|
struct SearchEngine;
|
|
|
|
}
|
|
|
|
namespace AK {
|
|
|
|
template<>
|
|
struct Traits<WebView::CookieStorageKey>;
|
|
|
|
}
|