| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp
|
| index 7872fc93849db6bde50bf46e75318cd12bcdef33..c0f6cf3659d58dbb95d758624b404a156f565e45 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp
|
| @@ -67,7 +67,7 @@ static void legacyCallerMethod(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| return;
|
| }
|
|
|
| - unsigned index;
|
| + uint32_t index;
|
| index = toUInt32(info.GetIsolate(), info[0], NormalConversion, exceptionState);
|
| if (exceptionState.hadException())
|
| return;
|
| @@ -85,7 +85,7 @@ static void itemMethod(const v8::FunctionCallbackInfo<v8::Value>& info) {
|
| return;
|
| }
|
|
|
| - unsigned index;
|
| + uint32_t index;
|
| index = toUInt32(info.GetIsolate(), info[0], NormalConversion, exceptionState);
|
| if (exceptionState.hadException())
|
| return;
|
| @@ -107,7 +107,7 @@ static void setItemMethod(const v8::FunctionCallbackInfo<v8::Value>& info) {
|
| return;
|
| }
|
|
|
| - unsigned index;
|
| + uint32_t index;
|
| TestInterfaceEmpty* value;
|
| index = toUInt32(info.GetIsolate(), info[0], NormalConversion, exceptionState);
|
| if (exceptionState.hadException())
|
| @@ -137,7 +137,7 @@ static void deleteItemMethod(const v8::FunctionCallbackInfo<v8::Value>& info) {
|
| return;
|
| }
|
|
|
| - unsigned index;
|
| + uint32_t index;
|
| index = toUInt32(info.GetIsolate(), info[0], NormalConversion, exceptionState);
|
| if (exceptionState.hadException())
|
| return;
|
|
|