| Index: third_party/WebKit/Source/core/animation/DefaultSVGInterpolation.h
|
| diff --git a/third_party/WebKit/Source/core/animation/DefaultSVGInterpolation.h b/third_party/WebKit/Source/core/animation/DefaultSVGInterpolation.h
|
| deleted file mode 100644
|
| index 4999678c8fd0b830e097db80ed0f8d41404e8679..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/Source/core/animation/DefaultSVGInterpolation.h
|
| +++ /dev/null
|
| @@ -1,30 +0,0 @@
|
| -// Copyright 2015 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#ifndef DefaultSVGInterpolation_h
|
| -#define DefaultSVGInterpolation_h
|
| -
|
| -#include "core/animation/SVGInterpolation.h"
|
| -
|
| -namespace blink {
|
| -
|
| -class DefaultSVGInterpolation : public SVGInterpolation {
|
| -public:
|
| - static PassRefPtr<DefaultSVGInterpolation> create(SVGPropertyBase* start, SVGPropertyBase* end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute)
|
| - {
|
| - return adoptRef(new DefaultSVGInterpolation(start, end, attribute));
|
| - }
|
| -
|
| - PassRefPtrWillBeRawPtr<SVGPropertyBase> interpolatedValue(SVGElement&) const final;
|
| -
|
| -private:
|
| - DefaultSVGInterpolation(SVGPropertyBase* start, SVGPropertyBase* end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute);
|
| -
|
| - RefPtrWillBePersistent<SVGPropertyBase> m_start;
|
| - RefPtrWillBePersistent<SVGPropertyBase> m_end;
|
| -};
|
| -
|
| -}
|
| -
|
| -#endif // DefaultSVGInterpolation_h
|
|
|