ladybird/Userland/Libraries/LibWebView/Forward.h
Andrew Kaster 096feaaeb8 Ladybird+LibWebView: Add ProcessManager to track live processes
This model will be used to add a Processes tab to the inspector.
2024-04-02 09:52:34 -06:00

34 lines
490 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 History;
class InspectorClient;
class OutOfProcessWebView;
class ProcessManager;
class ViewImplementation;
class WebContentClient;
struct Attribute;
struct CookieStorageKey;
struct SearchEngine;
struct SocketPair;
}
namespace AK {
template<>
struct Traits<WebView::CookieStorageKey>;
}