| Index: third_party/WebKit/Source/core/svg/SVGAnimatedBoolean.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGAnimatedBoolean.h b/third_party/WebKit/Source/core/svg/SVGAnimatedBoolean.h
|
| index 9ea1602b142661ad88674ca003205bcc104e13c5..21adb5bdcd662c6a559a8d42aa597daf1ef0534d 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGAnimatedBoolean.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGAnimatedBoolean.h
|
| @@ -43,9 +43,8 @@ class SVGAnimatedBoolean final : public SVGAnimatedProperty<SVGBoolean>,
|
|
|
| public:
|
| static SVGAnimatedBoolean* create(SVGElement* contextElement,
|
| - const QualifiedName& attributeName,
|
| - SVGBoolean* initialValue) {
|
| - return new SVGAnimatedBoolean(contextElement, attributeName, initialValue);
|
| + const QualifiedName& attributeName) {
|
| + return new SVGAnimatedBoolean(contextElement, attributeName);
|
| }
|
|
|
| DEFINE_INLINE_VIRTUAL_TRACE_WRAPPERS() {
|
| @@ -54,11 +53,10 @@ class SVGAnimatedBoolean final : public SVGAnimatedProperty<SVGBoolean>,
|
|
|
| protected:
|
| SVGAnimatedBoolean(SVGElement* contextElement,
|
| - const QualifiedName& attributeName,
|
| - SVGBoolean* initialValue)
|
| + const QualifiedName& attributeName)
|
| : SVGAnimatedProperty<SVGBoolean>(contextElement,
|
| attributeName,
|
| - initialValue) {}
|
| + SVGBoolean::create()) {}
|
| };
|
|
|
| } // namespace blink
|
|
|