mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 18:54:57 +00:00

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".
33 lines
468 B
C++
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>;
|
|
|
|
}
|