2022-04-30 05:46:33 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2022, The SerenityOS developers
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2025-06-10 20:20:46 -03:00
|
|
|
#include <AK/Platform.h>
|
2023-08-31 08:07:07 -03:00
|
|
|
#include <AK/Traits.h>
|
2025-07-02 00:55:11 -03:00
|
|
|
#include <LibWebView/Export.h>
|
2023-08-31 08:07:07 -03:00
|
|
|
|
2022-04-30 05:46:33 -03:00
|
|
|
namespace WebView {
|
|
|
|
|
|
2025-08-30 14:11:21 -03:00
|
|
|
class Action;
|
2025-03-09 19:01:25 -03:00
|
|
|
class Application;
|
2025-03-30 17:21:24 -03:00
|
|
|
class Autocomplete;
|
2026-03-22 12:38:20 -03:00
|
|
|
class BookmarkStore;
|
2026-05-22 11:02:42 -03:00
|
|
|
class CompositorClient;
|
2023-08-31 08:07:07 -03:00
|
|
|
class CookieJar;
|
2026-04-11 19:30:35 -03:00
|
|
|
class HistoryStore;
|
2025-08-30 14:11:21 -03:00
|
|
|
class Menu;
|
2022-04-30 05:46:33 -03:00
|
|
|
class OutOfProcessWebView;
|
2024-03-25 21:29:14 -03:00
|
|
|
class ProcessManager;
|
2025-03-20 13:59:44 -03:00
|
|
|
class Settings;
|
2022-10-05 09:32:17 -03:00
|
|
|
class ViewImplementation;
|
|
|
|
|
class WebContentClient;
|
2025-03-24 10:27:36 -03:00
|
|
|
class WebUI;
|
2022-04-30 05:46:33 -03:00
|
|
|
|
2023-11-19 12:42:11 -03:00
|
|
|
struct Attribute;
|
2025-03-30 17:21:24 -03:00
|
|
|
struct AutocompleteEngine;
|
2026-04-06 20:08:00 -03:00
|
|
|
struct BookmarkItem;
|
2025-06-06 20:36:56 -03:00
|
|
|
struct BrowserOptions;
|
2025-03-04 10:45:36 -03:00
|
|
|
struct ConsoleOutput;
|
2023-08-31 08:07:07 -03:00
|
|
|
struct CookieStorageKey;
|
2025-03-19 16:50:56 -03:00
|
|
|
struct DOMNodeProperties;
|
2025-03-06 19:32:43 -03:00
|
|
|
struct Mutation;
|
2024-03-27 14:53:07 -03:00
|
|
|
struct ProcessHandle;
|
2023-10-19 16:50:39 -03:00
|
|
|
struct SearchEngine;
|
2025-06-06 20:36:56 -03:00
|
|
|
struct WebContentOptions;
|
2023-08-31 08:07:07 -03:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
|
|
|
|
|
template<>
|
|
|
|
|
struct Traits<WebView::CookieStorageKey>;
|
|
|
|
|
|
2022-04-30 05:46:33 -03:00
|
|
|
}
|