mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 11:20:03 +00:00
The DevTools client will ask for this actor before trying to render any box model or computed style information. We can just stub out this actor for now.
38 lines
671 B
C++
38 lines
671 B
C++
/*
|
|
* Copyright (c) 2025, Tim Flynn <trflynn89@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace DevTools {
|
|
|
|
class Actor;
|
|
class Connection;
|
|
class CSSPropertiesActor;
|
|
class DeviceActor;
|
|
class DevToolsDelegate;
|
|
class DevToolsServer;
|
|
class FrameActor;
|
|
class HighlighterActor;
|
|
class InspectorActor;
|
|
class LayoutInspectorActor;
|
|
class NodeActor;
|
|
class PageStyleActor;
|
|
class PreferenceActor;
|
|
class ProcessActor;
|
|
class RootActor;
|
|
class TabActor;
|
|
class TargetConfigurationActor;
|
|
class ThreadActor;
|
|
class ThreadConfigurationActor;
|
|
class WalkerActor;
|
|
class WatcherActor;
|
|
|
|
struct CSSProperty;
|
|
struct ProcessDescription;
|
|
struct TabDescription;
|
|
|
|
}
|