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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.cpp

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/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;
}

Powered by Google App Engine
This is Rietveld 408576698