| Index: third_party/WebKit/Source/core/html/HTMLFrameSetElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLFrameSetElement.cpp b/third_party/WebKit/Source/core/html/HTMLFrameSetElement.cpp
|
| index 1250c5e61b78b1de35d0a9cc75413917f6025bf0..0cc92c4e43e4b241a50790d2427d6ea66f023b45 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLFrameSetElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLFrameSetElement.cpp
|
| @@ -70,9 +70,10 @@ void HTMLFrameSetElement::collectStyleForPresentationAttribute(
|
| HTMLElement::collectStyleForPresentationAttribute(name, value, style);
|
| }
|
|
|
| -void HTMLFrameSetElement::parseAttribute(const QualifiedName& name,
|
| - const AtomicString& oldValue,
|
| - const AtomicString& value) {
|
| +void HTMLFrameSetElement::parseAttribute(
|
| + const AttributeModificationParams& params) {
|
| + const QualifiedName& name = params.name;
|
| + const AtomicString& value = params.newValue;
|
| if (name == rowsAttr) {
|
| if (!value.isNull()) {
|
| m_rowLengths = parseListOfDimensions(value.getString());
|
| @@ -211,7 +212,7 @@ void HTMLFrameSetElement::parseAttribute(const QualifiedName& name,
|
| createAttributeEventListener(document().frame(), name, value,
|
| eventParameterName()));
|
| } else {
|
| - HTMLElement::parseAttribute(name, oldValue, value);
|
| + HTMLElement::parseAttribute(params);
|
| }
|
| }
|
|
|
|
|