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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXSlider.cpp

Issue 2614663008: Migrate WTF::Vector::append() to ::push_back() [part 13 of N] (Closed)
Patch Set: Created 3 years, 11 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/modules/accessibility/AXSlider.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXSlider.cpp b/third_party/WebKit/Source/modules/accessibility/AXSlider.cpp
index 70390e17d934524d752d5090b6bd2d86a0e368ed..56a5857d027d45310850d3c041f6ceb29a546aa8 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXSlider.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXSlider.cpp
@@ -97,7 +97,7 @@ void AXSlider::addChildren() {
if (thumb->accessibilityIsIgnored())
cache.remove(thumb->axObjectID());
else
- m_children.append(thumb);
+ m_children.push_back(thumb);
}
AXObject* AXSlider::elementAccessibilityHitTest(const IntPoint& point) const {

Powered by Google App Engine
This is Rietveld 408576698