mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
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.
25 lines
372 B
C++
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;
|
|
|
|
}
|