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.
This commit is contained in:
Timothy Flynn 2025-02-15 07:53:57 -05:00 committed by Tim Flynn
commit b974e91731
Notes: github-actions[bot] 2025-02-19 13:47:18 +00:00
9 changed files with 168 additions and 2 deletions

View file

@ -45,6 +45,8 @@ public:
return actor;
}
void refresh_tab_list();
private:
explicit DevToolsServer(DevToolsDelegate&, NonnullRefPtr<Core::TCPServer>);