LibDevTools+LibWebView: Port DevTools to String

This commit is contained in:
Timothy Flynn 2025-02-19 09:28:02 -05:00 committed by Tim Flynn
commit 4791ec35bf
Notes: github-actions[bot] 2025-02-21 00:29:06 +00:00
35 changed files with 99 additions and 98 deletions

View file

@ -12,12 +12,12 @@
namespace DevTools {
NonnullRefPtr<DeviceActor> DeviceActor::create(DevToolsServer& devtools, ByteString name)
NonnullRefPtr<DeviceActor> DeviceActor::create(DevToolsServer& devtools, String name)
{
return adopt_ref(*new DeviceActor(devtools, move(name)));
}
DeviceActor::DeviceActor(DevToolsServer& devtools, ByteString name)
DeviceActor::DeviceActor(DevToolsServer& devtools, String name)
: Actor(devtools, move(name))
{
}