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

Unified Diff: third_party/WebKit/Source/core/svg/animation/SVGSMILElement.cpp

Issue 2470233009: WTF/std normalization: replace WTF::Vector::first() with ::front() (Closed)
Patch Set: rebase Created 4 years, 1 month 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/svg/animation/SVGSMILElement.cpp
diff --git a/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.cpp b/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.cpp
index 819a34c46714908450712dab256de5d7bb08fb93..ead66d85be60101a4e9a0b2f7a0bc874d52f3c9f 100644
--- a/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.cpp
+++ b/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.cpp
@@ -1310,7 +1310,7 @@ void SVGSMILElement::dispatchPendingEvent(const AtomicString& eventType) {
eventType == EventTypeNames::beginEvent ||
eventType == EventTypeNames::repeatEvent || eventType == "repeatn");
if (eventType == "repeatn") {
- unsigned repeatEventCount = m_repeatEventCountList.first();
+ unsigned repeatEventCount = m_repeatEventCountList.front();
m_repeatEventCountList.remove(0);
dispatchEvent(RepeatEvent::create(eventType, repeatEventCount));
} else {

Powered by Google App Engine
This is Rietveld 408576698