Index: third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface2Partial.cpp |
diff --git a/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface2Partial.cpp b/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface2Partial.cpp |
index 3ecaefd63b1da023cb2ca0d302dd378b6a2aa93d..45ac5b2b93c6b8a21f79140c12afe859cd94a092 100644 |
--- a/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface2Partial.cpp |
+++ b/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface2Partial.cpp |
@@ -26,7 +26,7 @@ namespace TestInterface2PartialV8Internal { |
static void voidMethodPartial1Method(const v8::FunctionCallbackInfo<v8::Value>& info) |
{ |
if (UNLIKELY(info.Length() < 1)) { |
- V8ThrowException::throwException(createMinimumArityTypeErrorForMethod(info.GetIsolate(), "voidMethodPartial1", "TestInterface2", 1, info.Length()), info.GetIsolate()); |
+ V8ThrowException::throwException(info.GetIsolate(), createMinimumArityTypeErrorForMethod(info.GetIsolate(), "voidMethodPartial1", "TestInterface2", 1, info.Length())); |
return; |
} |
TestInterface2* impl = V8TestInterface2::toImpl(info.Holder()); |
@@ -47,7 +47,7 @@ static void voidMethodPartial1MethodCallback(const v8::FunctionCallbackInfo<v8:: |
static void voidMethodPartial2Method(const v8::FunctionCallbackInfo<v8::Value>& info) |
{ |
if (UNLIKELY(info.Length() < 1)) { |
- V8ThrowException::throwException(createMinimumArityTypeErrorForMethod(info.GetIsolate(), "voidMethodPartial2", "TestInterface2", 1, info.Length()), info.GetIsolate()); |
+ V8ThrowException::throwException(info.GetIsolate(), createMinimumArityTypeErrorForMethod(info.GetIsolate(), "voidMethodPartial2", "TestInterface2", 1, info.Length())); |
return; |
} |
TestInterface2* impl = V8TestInterface2::toImpl(info.Holder()); |