ladybird/Libraries/LibWebView/Forward.h
Timothy Flynn 2c4b420acc LibWeb+LibWebView+WebContent: Inform the UI about DOM mutations
This will allow our DevTools server to inform the Firefox DevTools
client about DOM mutations.
2025-03-08 01:25:55 +01:00

35 lines
517 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 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>;
}