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 { |