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