| Index: third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.cpp b/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.cpp
|
| index d43d8761206a01e9d4cde230c43843e5f747c2c2..3ae077581453a631c4f822701563aef22677727f 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.cpp
|
| @@ -170,11 +170,11 @@ void TestDictionary::setInternalDictionarySequenceMember(const HeapVector<Intern
|
| bool TestDictionary::hasLongMember() const {
|
| return m_hasLongMember;
|
| }
|
| -int TestDictionary::longMember() const {
|
| +int32_t TestDictionary::longMember() const {
|
| DCHECK(m_hasLongMember);
|
| return m_longMember;
|
| }
|
| -void TestDictionary::setLongMember(int value) {
|
| +void TestDictionary::setLongMember(int32_t value) {
|
| m_longMember = value;
|
| m_hasLongMember = true;
|
| }
|
|
|