| Index: third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp
|
| index 908be168562bb017c051e38541ac07ed37ca287c..61b783739eebd4409d5c69bc9a40a9676ea8bc08 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp
|
| @@ -296,7 +296,7 @@ void V8RuntimeAgentImpl::compileScript(ErrorString* errorString,
|
| if (!persistScript)
|
| return;
|
|
|
| - String16 scriptValueId = String16::number(script->GetUnboundScript()->GetId());
|
| + String16 scriptValueId = String16::fromInteger(script->GetUnboundScript()->GetId());
|
| std::unique_ptr<v8::Global<v8::Script>> global(new v8::Global<v8::Script>(m_debugger->isolate(), script));
|
| m_compiledScripts[scriptValueId] = std::move(global);
|
| *scriptId = scriptValueId;
|
|
|