| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp
|
| index c3503f05d9e9fc8b06cea28113ae2d3b1d5b69c8..5215c5402150e98d82129d573c707977f3f4bcb0 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp
|
| @@ -264,7 +264,7 @@ void V8TestDictionary::toImpl(v8::Isolate* isolate, v8::Local<v8::Value> v8Value
|
| if (longMemberValue.IsEmpty() || longMemberValue->IsUndefined()) {
|
| // Do nothing.
|
| } else {
|
| - int longMember = toInt32(isolate, longMemberValue, NormalConversion, exceptionState);
|
| + int32_t longMember = toInt32(isolate, longMemberValue, NormalConversion, exceptionState);
|
| if (exceptionState.hadException())
|
| return;
|
| impl.setLongMember(longMember);
|
|
|