| 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 c9787a81bd85d97b32616e599fc1bae9034492ab..8d8ba5783d7a77f276227ea00b22858a02c7f404 100644
|
| --- a/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.cpp
|
| @@ -1184,7 +1184,7 @@ void SVGSMILElement::notifyDependentsIntervalChanged() {
|
| for (SVGSMILElement* element : m_syncBaseDependents)
|
| element->createInstanceTimesFromSyncbase(this);
|
|
|
| - loopBreaker.remove(this);
|
| + loopBreaker.erase(this);
|
| }
|
|
|
| void SVGSMILElement::createInstanceTimesFromSyncbase(SVGSMILElement* syncBase) {
|
| @@ -1222,7 +1222,7 @@ void SVGSMILElement::addSyncBaseDependent(SVGSMILElement* animation) {
|
| }
|
|
|
| void SVGSMILElement::removeSyncBaseDependent(SVGSMILElement* animation) {
|
| - m_syncBaseDependents.remove(animation);
|
| + m_syncBaseDependents.erase(animation);
|
| }
|
|
|
| void SVGSMILElement::handleConditionEvent(Event* event, Condition* condition) {
|
|
|