Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestSpecialOperations.cpp |
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestSpecialOperations.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestSpecialOperations.cpp |
index e843131049a4c82f0ae81b9e1018f5dbe5aa5a86..a6182b971b329b43685db3e20f5a115d7b111e95 100644 |
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestSpecialOperations.cpp |
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestSpecialOperations.cpp |
@@ -56,10 +56,12 @@ namespace TestSpecialOperationsV8Internal { |
static void namedItemMethod(const v8::FunctionCallbackInfo<v8::Value>& info) |
{ |
if (UNLIKELY(info.Length() < 1)) { |
- V8ThrowException::throwException(info.GetIsolate(), createMinimumArityTypeErrorForMethod(info.GetIsolate(), "namedItem", "TestSpecialOperations", 1, info.Length())); |
+ throwMinimumArityErrorForMethod(info.GetIsolate(), "TestSpecialOperations", "namedItem", 1, info.Length()); |
return; |
} |
+ |
TestSpecialOperations* impl = V8TestSpecialOperations::toImpl(info.Holder()); |
+ |
V8StringResource<> name; |
{ |
name = info[0]; |