Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/TestDictionaryDerivedImplementedAs.h

Issue 2731593003: bindings: Use fixed-size integer types in the generated code. (Closed)
Patch Set: Explain why 64-bit integers are sometimes not listed Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/bindings/tests/results/core/TestDictionaryDerivedImplementedAs.h
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/TestDictionaryDerivedImplementedAs.h b/third_party/WebKit/Source/bindings/tests/results/core/TestDictionaryDerivedImplementedAs.h
index 5c4ee1eca20d92e122853eaec74b219277b1b2aa..7111eb8446a1310f2d4429444e51608530a6de49 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/TestDictionaryDerivedImplementedAs.h
+++ b/third_party/WebKit/Source/bindings/tests/results/core/TestDictionaryDerivedImplementedAs.h
@@ -38,8 +38,8 @@ class CORE_EXPORT TestDictionaryDerivedImplementedAs : public TestDictionary {
void setDerivedStringMemberWithDefault(String);
bool hasRequiredLongMember() const;
- int requiredLongMember() const;
- void setRequiredLongMember(int);
+ int32_t requiredLongMember() const;
+ void setRequiredLongMember(int32_t);
bool hasStringOrDoubleSequenceMember() const;
const HeapVector<StringOrDouble>& stringOrDoubleSequenceMember() const;
@@ -52,7 +52,7 @@ class CORE_EXPORT TestDictionaryDerivedImplementedAs : public TestDictionary {
String m_derivedStringMember;
String m_derivedStringMemberWithDefault;
bool m_hasRequiredLongMember = false;
- int m_requiredLongMember;
+ int32_t m_requiredLongMember;
bool m_hasStringOrDoubleSequenceMember = false;
HeapVector<StringOrDouble> m_stringOrDoubleSequenceMember;

Powered by Google App Engine
This is Rietveld 408576698