| Index: third_party/WebKit/Source/bindings/tests/results/core/TestInterfaceOrLong.h
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/TestInterfaceOrLong.h b/third_party/WebKit/Source/bindings/tests/results/core/TestInterfaceOrLong.h
|
| index 8892088a48af60d041c8cbdf4fa07f23164e9569..0cbd1ed8f29352ce0fbc55b1d17cf6c12e1e350f 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/TestInterfaceOrLong.h
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/TestInterfaceOrLong.h
|
| @@ -34,9 +34,9 @@ class CORE_EXPORT TestInterfaceOrLong final {
|
| static TestInterfaceOrLong fromTestInterface(TestInterfaceImplementation*);
|
|
|
| bool isLong() const { return m_type == SpecificTypeLong; }
|
| - int getAsLong() const;
|
| - void setLong(int);
|
| - static TestInterfaceOrLong fromLong(int);
|
| + int32_t getAsLong() const;
|
| + void setLong(int32_t);
|
| + static TestInterfaceOrLong fromLong(int32_t);
|
|
|
| TestInterfaceOrLong(const TestInterfaceOrLong&);
|
| ~TestInterfaceOrLong();
|
| @@ -52,7 +52,7 @@ class CORE_EXPORT TestInterfaceOrLong final {
|
| SpecificTypes m_type;
|
|
|
| Member<TestInterfaceImplementation> m_testInterface;
|
| - int m_long;
|
| + int32_t m_long;
|
|
|
| friend CORE_EXPORT v8::Local<v8::Value> ToV8(const TestInterfaceOrLong&, v8::Local<v8::Object>, v8::Isolate*);
|
| };
|
|
|