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

Unified Diff: third_party/WebKit/Source/core/dom/TouchList.h

Issue 2574773002: Migrate WTF::Vector::append() to ::push_back() [part 4 of N] (Closed)
Patch Set: rebase 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/dom/TouchList.h
diff --git a/third_party/WebKit/Source/core/dom/TouchList.h b/third_party/WebKit/Source/core/dom/TouchList.h
index 8da2b54d663826878e7f82e80ca2d3340d1962ef..df657dc9550928e0573a17fc4a1c88b4c82d757c 100644
--- a/third_party/WebKit/Source/core/dom/TouchList.h
+++ b/third_party/WebKit/Source/core/dom/TouchList.h
@@ -56,7 +56,7 @@ class CORE_EXPORT TouchList final : public GarbageCollected<TouchList>,
Touch* item(unsigned);
const Touch* item(unsigned) const;
- void append(Touch* touch) { m_values.append(touch); }
+ void append(Touch* touch) { m_values.push_back(touch); }
DECLARE_TRACE();
« no previous file with comments | « third_party/WebKit/Source/core/dom/StyleSheetCollection.cpp ('k') | third_party/WebKit/Source/core/dom/TreeScope.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698