mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:38:11 +00:00

This creates WebView::ConsoleClient to handle functionality that will be common to the JS consoles of all Ladybird chromes. This will let each chrome focus on just the UI. Note that this includes the `console.group` functionality that only the Serenity chrome previously had. This was a FIXME in the Qt chrome, and it is implemented such that all chromes will receive this functionality for free.
16 lines
237 B
C++
16 lines
237 B
C++
/*
|
|
* Copyright (c) 2022, The SerenityOS developers
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace WebView {
|
|
|
|
class ConsoleClient;
|
|
class OutOfProcessWebView;
|
|
class ViewImplementation;
|
|
class WebContentClient;
|
|
|
|
}
|