ladybird/Libraries/LibWebView/Forward.h
Timothy Flynn aca4385daf LibWebView: Create a spare WebContent process
Since cross-site navigation is a pretty frequent task, creating a spare
process is commonplace in other browsers to reduce the overhead of
directing the target site to a new process.

We store this process on the WebView application. If it is unavailable,
we queue a task to create it later.
2025-03-11 12:10:42 +01:00

36 lines
536 B
C++

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