| Index: Source/core/animation/VisibilityStyleInterpolation.h
|
| diff --git a/Source/core/animation/VisibilityStyleInterpolation.h b/Source/core/animation/VisibilityStyleInterpolation.h
|
| index 0801d5c91a1379b015be012c0c2199a23724c977..a46370b05446fdec005c548443d3a4f2a7d9393f 100644
|
| --- a/Source/core/animation/VisibilityStyleInterpolation.h
|
| +++ b/Source/core/animation/VisibilityStyleInterpolation.h
|
| @@ -30,14 +30,14 @@ public:
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| private:
|
| - VisibilityStyleInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, CSSPropertyID id)
|
| + VisibilityStyleInterpolation(PassOwnPtr<InterpolableValue> start, PassOwnPtr<InterpolableValue> end, CSSPropertyID id)
|
| : StyleInterpolation(start, end, id)
|
| , m_notVisible(CSSValueVisible)
|
| {
|
| }
|
|
|
| - static PassOwnPtrWillBeRawPtr<InterpolableValue> visibilityToInterpolableValue(const CSSValue&);
|
| - static PassRefPtrWillBeRawPtr<CSSValue> interpolableValueToVisibility(InterpolableValue*, CSSValueID);
|
| + static PassOwnPtr<InterpolableValue> visibilityToInterpolableValue(const CSSValue&);
|
| + static PassRefPtr<CSSValue> interpolableValueToVisibility(InterpolableValue*, CSSValueID);
|
|
|
| CSSValueID m_notVisible;
|
|
|
|
|