ladybird/Libraries/LibWebView/Forward.h
Timothy Flynn daca9f5995 LibDevTools+LibWebView+WebContent: Selectively fetch DOM node properties
When we inspect a DOM node, we currently serialize many properties for
that node, including its layout, computed style, used fonts, etc. Now
that we aren't piggy-backing on the Inspector interface, we can instead
only serialize the specific information required by DevTools.
2025-03-20 09:01:26 +01:00

36 lines
539 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 OutOfProcessWebView;
class ProcessManager;
class ViewImplementation;
class WebContentClient;
struct Attribute;
struct ConsoleOutput;
struct CookieStorageKey;
struct DOMNodeProperties;
struct Mutation;
struct ProcessHandle;
struct SearchEngine;
}
namespace AK {
template<>
struct Traits<WebView::CookieStorageKey>;
}