| Index: third_party/WebKit/Source/core/dom/Element.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Element.cpp b/third_party/WebKit/Source/core/dom/Element.cpp
|
| index ee87d5e9c8acf45521a3bfc18554f9700d2c7127..17db7ea41bc8c35c6e06716d1a61d981110ccc11 100644
|
| --- a/third_party/WebKit/Source/core/dom/Element.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Element.cpp
|
| @@ -1935,7 +1935,7 @@ void Element::recalcStyle(StyleRecalcChange change, Text* nextTextSibling) {
|
| }
|
|
|
| if (hasCustomStyleCallbacks())
|
| - didRecalcStyle(change);
|
| + didRecalcStyle();
|
| }
|
|
|
| PassRefPtr<ComputedStyle> Element::propagateInheritedProperties(
|
| @@ -3728,7 +3728,7 @@ void Element::willRecalcStyle(StyleRecalcChange) {
|
| DCHECK(hasCustomStyleCallbacks());
|
| }
|
|
|
| -void Element::didRecalcStyle(StyleRecalcChange) {
|
| +void Element::didRecalcStyle() {
|
| DCHECK(hasCustomStyleCallbacks());
|
| }
|
|
|
|
|