1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 08:34:57 +00:00
serenity/Userland/Libraries/LibWebView/Forward.h
Andrew Kaster 02edd240ae LibWeb+WebContent: Spawn Worker processes from the chrome
Instead of spawning these processes from the WebContent process, we now
create them in the Browser chrome.

Part 1/N of "all processes are owned by the chrome".
2024-01-12 15:53:11 -07:00

33 lines
468 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 ViewImplementation;
class WebContentClient;
struct Attribute;
struct CookieStorageKey;
struct SearchEngine;
struct SocketPair;
}
namespace AK {
template<>
struct Traits<WebView::CookieStorageKey>;
}