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

Unified Diff: third_party/WebKit/Source/platform/wtf/RefVector.h

Issue 2788683005: Migrate WTF::RefVector::append() to ::push_back() (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/wtf/RefVector.h
diff --git a/third_party/WebKit/Source/platform/wtf/RefVector.h b/third_party/WebKit/Source/platform/wtf/RefVector.h
index dc827f7ead63ac9cb74d4c12a1387ed96751a186..94eac38d4bacb0b8c3323bbb7cbaf90bce5ad889 100644
--- a/third_party/WebKit/Source/platform/wtf/RefVector.h
+++ b/third_party/WebKit/Source/platform/wtf/RefVector.h
@@ -33,7 +33,7 @@ class RefVector : public RefCounted<RefVector<T>> {
size_t size() const { return m_vector.size(); }
bool isEmpty() const { return !size(); }
- void append(const T& decoration) { m_vector.push_back(decoration); }
+ void push_back(const T& decoration) { m_vector.push_back(decoration); }
const Vector<T>& vector() const { return m_vector; }
private:
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698