Files
ladybird/Libraries/LibDevTools/Forward.h
Timothy Flynn b974e91731 LibDevTools: Implement enough of the protocol to see a tab list
Previously, we could connect to our DevTools server from Firefox, but
could not see any information on Ladybird's opened tabs. This implements
enough of the protocol to see a tab list, but we cannot yet inspect the
tabs.
2025-02-19 08:45:51 -05:00

25 lines
372 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 DeviceActor;
class DevToolsDelegate;
class DevToolsServer;
class PreferenceActor;
class ProcessActor;
class RootActor;
class TabActor;
struct ProcessDescription;
struct TabDescription;
}