| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestIntegerIndexed.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestIntegerIndexed.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestIntegerIndexed.cpp
|
| index f8107224cdb1dd40674df7c1b05d283f68617646..0522361f8809ac3a9f72eea24808154ad115f108 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestIntegerIndexed.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestIntegerIndexed.cpp
|
| @@ -80,10 +80,12 @@ static void lengthAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Val
|
| static void voidMethodDocumentMethod(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| {
|
| if (UNLIKELY(info.Length() < 1)) {
|
| - V8ThrowException::throwException(info.GetIsolate(), createMinimumArityTypeErrorForMethod(info.GetIsolate(), "voidMethodDocument", "TestIntegerIndexed", 1, info.Length()));
|
| + throwMinimumArityErrorForMethod(info.GetIsolate(), "TestIntegerIndexed", "voidMethodDocument", 1, info.Length());
|
| return;
|
| }
|
| +
|
| TestIntegerIndexed* impl = V8TestIntegerIndexed::toImpl(info.Holder());
|
| +
|
| Document* document;
|
| {
|
| document = V8Document::toImplWithTypeCheck(info.GetIsolate(), info[0]);
|
|
|