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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/TestDictionaryDerivedImplementedAs.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/TestDictionaryDerivedImplementedAs.cpp
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/TestDictionaryDerivedImplementedAs.cpp b/third_party/WebKit/Source/bindings/tests/results/core/TestDictionaryDerivedImplementedAs.cpp
index ab3fcf0178950928789c1c56716208b1d010a5fb..927ca16334efe2bd5d313f22d7eafdd544044704 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/TestDictionaryDerivedImplementedAs.cpp
+++ b/third_party/WebKit/Source/bindings/tests/results/core/TestDictionaryDerivedImplementedAs.cpp
@@ -44,11 +44,11 @@ void TestDictionaryDerivedImplementedAs::setDerivedStringMemberWithDefault(Strin
bool TestDictionaryDerivedImplementedAs::hasRequiredLongMember() const {
return m_hasRequiredLongMember;
}
-int TestDictionaryDerivedImplementedAs::requiredLongMember() const {
+int32_t TestDictionaryDerivedImplementedAs::requiredLongMember() const {
DCHECK(m_hasRequiredLongMember);
return m_requiredLongMember;
}
-void TestDictionaryDerivedImplementedAs::setRequiredLongMember(int value) {
+void TestDictionaryDerivedImplementedAs::setRequiredLongMember(int32_t value) {
m_requiredLongMember = value;
m_hasRequiredLongMember = true;
}

Powered by Google App Engine
This is Rietveld 408576698