| Index: third_party/WebKit/Source/core/svg/SVGBoolean.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGBoolean.cpp b/third_party/WebKit/Source/core/svg/SVGBoolean.cpp
|
| index d09fb3535b11689f9c819f655821b87aec6efcbe..5e6da7d988c31ba0293642c743afed69d5904bf2 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGBoolean.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGBoolean.cpp
|
| @@ -52,12 +52,12 @@ SVGParsingError SVGBoolean::setValueAsString(const String& value)
|
| return SVGParseStatus::ExpectedBoolean;
|
| }
|
|
|
| -void SVGBoolean::add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*)
|
| +void SVGBoolean::add(RawPtr<SVGPropertyBase>, SVGElement*)
|
| {
|
| ASSERT_NOT_REACHED();
|
| }
|
|
|
| -void SVGBoolean::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> from, PassRefPtrWillBeRawPtr<SVGPropertyBase> to, PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*)
|
| +void SVGBoolean::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, RawPtr<SVGPropertyBase> from, RawPtr<SVGPropertyBase> to, RawPtr<SVGPropertyBase>, SVGElement*)
|
| {
|
| ASSERT(animationElement);
|
| bool fromBoolean = animationElement->getAnimationMode() == ToAnimation ? m_value : toSVGBoolean(from)->value();
|
| @@ -66,7 +66,7 @@ void SVGBoolean::calculateAnimatedValue(SVGAnimationElement* animationElement, f
|
| animationElement->animateDiscreteType<bool>(percentage, fromBoolean, toBoolean, m_value);
|
| }
|
|
|
| -float SVGBoolean::calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*)
|
| +float SVGBoolean::calculateDistance(RawPtr<SVGPropertyBase>, SVGElement*)
|
| {
|
| // No paced animations for boolean.
|
| return -1;
|
|
|