ladybird/Libraries/LibWebView/Forward.h
Timothy Flynn c5a22a1a97 LibDevTools+LibWebView: Implement basic support for console logging
This implements support for basic usage of console.log and friends. It
does not implement console.assert, console.trace, console.group, etc.
2025-03-04 15:33:39 -05:00

34 lines
500 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 ProcessHandle;
struct SearchEngine;
}
namespace AK {
template<>
struct Traits<WebView::CookieStorageKey>;
}