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

Unified Diff: third_party/WebKit/Source/core/css/CSSValueList.h

Issue 2566403003: Migrate WTF::Vector::append() to ::push_back() [part 3 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/css/CSSValueList.h
diff --git a/third_party/WebKit/Source/core/css/CSSValueList.h b/third_party/WebKit/Source/core/css/CSSValueList.h
index 08457fd9d84f0185e7e034e2b1ef67b85fdc5b56..9cef3164a7284b07abbce3ebd6e29c8c38dda712 100644
--- a/third_party/WebKit/Source/core/css/CSSValueList.h
+++ b/third_party/WebKit/Source/core/css/CSSValueList.h
@@ -53,7 +53,7 @@ class CORE_EXPORT CSSValueList : public CSSValue {
size_t length() const { return m_values.size(); }
const CSSValue& item(size_t index) const { return *m_values[index]; }
- void append(const CSSValue& value) { m_values.append(value); }
+ void append(const CSSValue& value) { m_values.push_back(value); }
bool removeAll(const CSSValue&);
bool hasValue(const CSSValue&) const;
CSSValueList* copy() const;
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSSyntaxDescriptor.cpp ('k') | third_party/WebKit/Source/core/css/CSSVariableData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698