| Index: third_party/WebKit/Source/bindings/core/v8/custom/V8DevToolsHostCustom.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/custom/V8DevToolsHostCustom.cpp b/third_party/WebKit/Source/bindings/core/v8/custom/V8DevToolsHostCustom.cpp
|
| index ffffdab73748bb3d6c904f54b3e0b48dd7f3ff3d..fbc6d6edfe2ca1b81eaee354c9f5c5e7a5c3a95f 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/custom/V8DevToolsHostCustom.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/custom/V8DevToolsHostCustom.cpp
|
| @@ -99,7 +99,7 @@ static bool PopulateContextMenuItems(v8::Isolate* isolate,
|
| menu.AppendItem(item);
|
| } else {
|
| int32_t int32_id;
|
| - if (!V8Call(id->Int32Value(context), int32_id))
|
| + if (!id->Int32Value(context).To(&int32_id))
|
| return false;
|
| ContextMenuAction typed_id = static_cast<ContextMenuAction>(
|
| kContextMenuItemBaseCustomTag + int32_id);
|
|
|