| Index: third_party/WebKit/Source/core/animation/DefaultSVGInterpolation.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/DefaultSVGInterpolation.cpp b/third_party/WebKit/Source/core/animation/DefaultSVGInterpolation.cpp
|
| deleted file mode 100644
|
| index 09a80a76b06f35b5730fb1e6b1596d7187bc55bf..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/Source/core/animation/DefaultSVGInterpolation.cpp
|
| +++ /dev/null
|
| @@ -1,26 +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.
|
| -
|
| -#include "core/animation/DefaultSVGInterpolation.h"
|
| -
|
| -#include "core/svg/SVGElement.h"
|
| -
|
| -namespace blink {
|
| -
|
| -DefaultSVGInterpolation::DefaultSVGInterpolation(SVGPropertyBase* start, SVGPropertyBase* end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute)
|
| - : SVGInterpolation(InterpolableBool::create(false), InterpolableBool::create(true), attribute)
|
| - , m_start(start)
|
| - , m_end(end)
|
| -{
|
| -}
|
| -
|
| -PassRefPtrWillBeRawPtr<SVGPropertyBase> DefaultSVGInterpolation::interpolatedValue(SVGElement& element) const
|
| -{
|
| - if (toInterpolableBool(m_cachedValue.get())->value())
|
| - return m_end;
|
| -
|
| - return m_start;
|
| -}
|
| -
|
| -}
|
|
|