Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestTypedefs.cpp |
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestTypedefs.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestTypedefs.cpp |
index b47994a8b0c5c49c20c8185e5ce2a9f8aadb8261..4befd916882e764e53dcc9197bc820371b1fc432 100644 |
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestTypedefs.cpp |
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestTypedefs.cpp |
@@ -136,7 +136,7 @@ static void voidMethodArrayOfLongsArgMethod(const v8::FunctionCallbackInfo<v8::V |
impl->voidMethodArrayOfLongsArg(); |
return; |
} |
- arrayOfLongsArg = ToImplArray<Vector<int32_t>, IDLLong>(info[0], 1, info.GetIsolate(), exceptionState); |
+ arrayOfLongsArg = NativeValueTraits<IDLSequence<IDLLong>>::NativeValue(info.GetIsolate(), info[0], exceptionState); |
if (exceptionState.HadException()) |
return; |
@@ -196,7 +196,7 @@ static void uLongLongMethodTestInterfaceEmptyTypeSequenceArgMethod(const v8::Fun |
} |
HeapVector<Member<TestInterfaceEmpty>> testInterfaceEmptyTypeSequenceArg; |
- testInterfaceEmptyTypeSequenceArg = ToMemberNativeArray<TestInterfaceEmpty>(info[0], 1, info.GetIsolate(), exceptionState); |
+ testInterfaceEmptyTypeSequenceArg = NativeValueTraits<IDLSequence<TestInterfaceEmpty>>::NativeValue(info.GetIsolate(), info[0], exceptionState); |
if (exceptionState.HadException()) |
return; |
@@ -230,7 +230,7 @@ static void arrayOfStringsMethodArrayOfStringsArgMethod(const v8::FunctionCallba |
} |
Vector<String> arrayOfStringsArg; |
- arrayOfStringsArg = ToImplArray<Vector<String>>(info[0], 1, info.GetIsolate(), exceptionState); |
+ arrayOfStringsArg = NativeValueTraits<IDLSequence<IDLString>>::NativeValue(info.GetIsolate(), info[0], exceptionState); |
if (exceptionState.HadException()) |
return; |
@@ -248,7 +248,7 @@ static void stringArrayMethodStringArrayArgMethod(const v8::FunctionCallbackInfo |
} |
Vector<String> stringArrayArg; |
- stringArrayArg = ToImplArray<Vector<String>>(info[0], 1, info.GetIsolate(), exceptionState); |
+ stringArrayArg = NativeValueTraits<IDLSequence<IDLString>>::NativeValue(info.GetIsolate(), info[0], exceptionState); |
if (exceptionState.HadException()) |
return; |