| 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 c4a3b674f483bdfe8f6e7b8dc01a68f0a59e1077..ca04994e55a7fc4f223d8d7ac6da85e2e6ed7c81 100644
|
| --- a/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.cpp
|
| @@ -445,9 +445,9 @@ void SVGSMILElement::parseBeginOrEnd(const String& parseString,
|
| sortTimeList(timeList);
|
| }
|
|
|
| -void SVGSMILElement::parseAttribute(const QualifiedName& name,
|
| - const AtomicString& oldValue,
|
| - const AtomicString& value) {
|
| +void SVGSMILElement::parseAttribute(const AttributeModificationParams& params) {
|
| + const QualifiedName& name = params.name;
|
| + const AtomicString& value = params.newValue;
|
| if (name == SVGNames::beginAttr) {
|
| if (!m_conditions.isEmpty()) {
|
| clearConditions();
|
| @@ -477,7 +477,7 @@ void SVGSMILElement::parseAttribute(const QualifiedName& name,
|
| EventTypeNames::repeatEvent,
|
| createAttributeEventListener(this, name, value, eventParameterName()));
|
| } else {
|
| - SVGElement::parseAttribute(name, oldValue, value);
|
| + SVGElement::parseAttribute(params);
|
| }
|
| }
|
|
|
|
|