Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestIntegerIndexedGlobal.cpp |
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestIntegerIndexedGlobal.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestIntegerIndexedGlobal.cpp |
index da2ca3e67834cc2bbd14c07fe99385973f7c4a98..996b73cc9a5e5443b59a573fadfc35b6f0a7f24f 100644 |
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestIntegerIndexedGlobal.cpp |
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestIntegerIndexedGlobal.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", "TestIntegerIndexedGlobal", 1, info.Length())); |
+ throwMinimumArityErrorForMethod(info.GetIsolate(), "TestIntegerIndexedGlobal", "voidMethodDocument", 1, info.Length()); |
return; |
} |
+ |
TestIntegerIndexedGlobal* impl = V8TestIntegerIndexedGlobal::toImpl(info.Holder()); |
+ |
Document* document; |
{ |
document = V8Document::toImplWithTypeCheck(info.GetIsolate(), info[0]); |