| Index: third_party/WebKit/Source/bindings/core/v8/V8HTMLConstructor.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/V8HTMLConstructor.cpp b/third_party/WebKit/Source/bindings/core/v8/V8HTMLConstructor.cpp
|
| index 24fc1d1b01e25006866f1b18676b2aa5f3ff23c5..731564078c0e9f75c4e4e15d6146b2310d38b68c 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/V8HTMLConstructor.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/V8HTMLConstructor.cpp
|
| @@ -102,9 +102,9 @@ void V8HTMLConstructor::HtmlConstructor(
|
| // 6. Let prototype be Get(NewTarget, "prototype"). Rethrow any exceptions.
|
| v8::Local<v8::Value> prototype;
|
| v8::Local<v8::String> prototype_string = V8AtomicString(isolate, "prototype");
|
| - if (!V8Call(new_target.As<v8::Object>()->Get(script_state->GetContext(),
|
| - prototype_string),
|
| - prototype)) {
|
| + if (!new_target.As<v8::Object>()
|
| + ->Get(script_state->GetContext(), prototype_string)
|
| + .ToLocal(&prototype)) {
|
| return;
|
| }
|
|
|
|
|