mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-28 20:29:42 +00:00
LibDevTools+LibWebView: Port DevTools to String
This commit is contained in:
@@ -10,12 +10,12 @@
|
||||
|
||||
namespace DevTools {
|
||||
|
||||
NonnullRefPtr<ThreadConfigurationActor> ThreadConfigurationActor::create(DevToolsServer& devtools, ByteString name)
|
||||
NonnullRefPtr<ThreadConfigurationActor> ThreadConfigurationActor::create(DevToolsServer& devtools, String name)
|
||||
{
|
||||
return adopt_ref(*new ThreadConfigurationActor(devtools, move(name)));
|
||||
}
|
||||
|
||||
ThreadConfigurationActor::ThreadConfigurationActor(DevToolsServer& devtools, ByteString name)
|
||||
ThreadConfigurationActor::ThreadConfigurationActor(DevToolsServer& devtools, String name)
|
||||
: Actor(devtools, move(name))
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user