Index: Source/bindings/tests/results/core/V8TestInterface2.cpp |
diff --git a/Source/bindings/tests/results/core/V8TestInterface2.cpp b/Source/bindings/tests/results/core/V8TestInterface2.cpp |
index 7304fc81c0e1c9af7402879ccde6789dc2195210..1d1c8244157785ccff97cd461876915047aa8d57 100644 |
--- a/Source/bindings/tests/results/core/V8TestInterface2.cpp |
+++ b/Source/bindings/tests/results/core/V8TestInterface2.cpp |
@@ -47,7 +47,7 @@ static void itemMethod(const v8::FunctionCallbackInfo<v8::Value>& info) |
TestInterface2* impl = V8TestInterface2::toImpl(info.Holder()); |
unsigned index; |
{ |
- index = toUInt32(info.GetIsolate(), info[0], exceptionState); |
+ index = toUInt32(info.GetIsolate(), info[0], NormalConversion, exceptionState); |
if (exceptionState.throwIfNeeded()) |
return; |
} |
@@ -78,7 +78,7 @@ static void setItemMethod(const v8::FunctionCallbackInfo<v8::Value>& info) |
unsigned index; |
TestInterfaceEmpty* value; |
{ |
- index = toUInt32(info.GetIsolate(), info[0], exceptionState); |
+ index = toUInt32(info.GetIsolate(), info[0], NormalConversion, exceptionState); |
if (exceptionState.throwIfNeeded()) |
return; |
value = V8TestInterfaceEmpty::toImplWithTypeCheck(info.GetIsolate(), info[1]); |
@@ -114,7 +114,7 @@ static void deleteItemMethod(const v8::FunctionCallbackInfo<v8::Value>& info) |
TestInterface2* impl = V8TestInterface2::toImpl(info.Holder()); |
unsigned index; |
{ |
- index = toUInt32(info.GetIsolate(), info[0], exceptionState); |
+ index = toUInt32(info.GetIsolate(), info[0], NormalConversion, exceptionState); |
if (exceptionState.throwIfNeeded()) |
return; |
} |