ladybird/Libraries/LibWebView/Forward.h
Timothy Flynn 39da2d9a2f LibWebView+UI: Migrate some UI process init to LibWebView
No need to do this setup in every UI's main().
2025-06-11 07:26:32 -04:00

47 lines
744 B
C++

/*
* Copyright (c) 2022, The SerenityOS developers
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Platform.h>
#include <AK/Traits.h>
namespace WebView {
class Application;
class Autocomplete;
class CookieJar;
class Database;
class OutOfProcessWebView;
class ProcessManager;
class Settings;
class ViewImplementation;
class WebContentClient;
class WebUI;
#if defined(AK_OS_MACOS)
class MachPortServer;
#endif
struct Attribute;
struct AutocompleteEngine;
struct BrowserOptions;
struct ConsoleOutput;
struct CookieStorageKey;
struct DOMNodeProperties;
struct Mutation;
struct ProcessHandle;
struct SearchEngine;
struct WebContentOptions;
}
namespace AK {
template<>
struct Traits<WebView::CookieStorageKey>;
}