Index: third_party/WebKit/Source/bindings/core/v8/V8Binding.cpp |
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8Binding.cpp b/third_party/WebKit/Source/bindings/core/v8/V8Binding.cpp |
index 3d01b570bc04e60182766aeeec854a2be1e4e4fe..8c526ddc3e6488b4beabc536932930fe04babae6 100644 |
--- a/third_party/WebKit/Source/bindings/core/v8/V8Binding.cpp |
+++ b/third_party/WebKit/Source/bindings/core/v8/V8Binding.cpp |
@@ -917,7 +917,7 @@ void removeHiddenValueFromArray(v8::Isolate* isolate, |
if (!array->Get(isolate->GetCurrentContext(), i).ToLocal(&item)) |
return; |
if (item->StrictEquals(value)) { |
- array->Delete(isolate->GetCurrentContext(), i); |
+ array->Delete(isolate->GetCurrentContext(), i).ToChecked(); |
return; |
} |
} |