| Index: third_party/WebKit/Source/bindings/tests/results/core/LongOrTestDictionary.h
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/LongOrTestDictionary.h b/third_party/WebKit/Source/bindings/tests/results/core/LongOrTestDictionary.h
|
| index a479be908031d749df4ee0bc17ddcf832774c750..40de8bbc03a046280ca3f7a9a4bb64fc1c944c0c 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/LongOrTestDictionary.h
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/LongOrTestDictionary.h
|
| @@ -28,9 +28,9 @@ class CORE_EXPORT LongOrTestDictionary final {
|
| bool isNull() const { return m_type == SpecificTypeNone; }
|
|
|
| bool isLong() const { return m_type == SpecificTypeLong; }
|
| - int getAsLong() const;
|
| - void setLong(int);
|
| - static LongOrTestDictionary fromLong(int);
|
| + int32_t getAsLong() const;
|
| + void setLong(int32_t);
|
| + static LongOrTestDictionary fromLong(int32_t);
|
|
|
| bool isTestDictionary() const { return m_type == SpecificTypeTestDictionary; }
|
| const TestDictionary& getAsTestDictionary() const;
|
| @@ -50,7 +50,7 @@ class CORE_EXPORT LongOrTestDictionary final {
|
| };
|
| SpecificTypes m_type;
|
|
|
| - int m_long;
|
| + int32_t m_long;
|
| TestDictionary m_testDictionary;
|
|
|
| friend CORE_EXPORT v8::Local<v8::Value> ToV8(const LongOrTestDictionary&, v8::Local<v8::Object>, v8::Isolate*);
|
|
|