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

Unified Diff: third_party/WebKit/Source/core/html/shadow/DateTimeEditElement.cpp

Issue 2583233002: Migrate WTF::Vector::append() to ::push_back() [part 7 of N] (Closed)
Patch Set: Created 4 years 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/core/html/shadow/DateTimeEditElement.cpp
diff --git a/third_party/WebKit/Source/core/html/shadow/DateTimeEditElement.cpp b/third_party/WebKit/Source/core/html/shadow/DateTimeEditElement.cpp
index 425102b6e6035abc595d8e04213a1e844d20f7f0..8505f9be110ba0c679cb1f392245aa3ab002eebd 100644
--- a/third_party/WebKit/Source/core/html/shadow/DateTimeEditElement.cpp
+++ b/third_party/WebKit/Source/core/html/shadow/DateTimeEditElement.cpp
@@ -530,7 +530,7 @@ inline Element* DateTimeEditElement::fieldsWrapperElement() const {
void DateTimeEditElement::addField(DateTimeFieldElement* field) {
if (m_fields.size() >= maximumNumberOfFields)
return;
- m_fields.append(field);
+ m_fields.push_back(field);
fieldsWrapperElement()->appendChild(field);
}

Powered by Google App Engine
This is Rietveld 408576698