| Index: third_party/WebKit/Source/platform/v8_inspector/V8DebuggerScript.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerScript.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerScript.cpp
|
| index 487fa25a93166bd371a82b0d8fcb3647e31cd302..91a060b954e023fda26d91c28ea79eee945c4819 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerScript.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerScript.cpp
|
| @@ -69,7 +69,7 @@ V8DebuggerScript::V8DebuggerScript(v8::Isolate* isolate, v8::Local<v8::Object> o
|
| {
|
| v8::Local<v8::Value> idValue = object->Get(toV8StringInternalized(isolate, "id"));
|
| DCHECK(!idValue.IsEmpty() && idValue->IsInt32());
|
| - m_id = String16::number(idValue->Int32Value());
|
| + m_id = String16::fromInteger(idValue->Int32Value());
|
|
|
| m_url = toProtocolStringWithTypeCheck(object->Get(toV8StringInternalized(isolate, "name")));
|
| m_sourceURL = toProtocolStringWithTypeCheck(object->Get(toV8StringInternalized(isolate, "sourceURL")));
|
|
|