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

@ -11,10 +11,9 @@
namespace DevTools {
// FIXME: Convert `name` to a String.
Actor::Actor(DevToolsServer& devtools, ByteString name)
Actor::Actor(DevToolsServer& devtools, String name)
: m_devtools(devtools)
, m_name(MUST(String::from_byte_string(name)))
, m_name(move(name))
{
}