blob: f1a848cab41e8f1262798093ec7e1a62af48a4f9 [file] [log] [blame]
// 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 SVGIntegerInterpolationType_h
#define SVGIntegerInterpolationType_h
#include "core/animation/SVGInterpolationType.h"
namespace blink {
class SVGIntegerInterpolationType : public SVGInterpolationType {
public:
SVGIntegerInterpolationType(const QualifiedName& attribute)
: SVGInterpolationType(attribute) {}
private:
InterpolationValue MaybeConvertNeutral(const InterpolationValue& underlying,
ConversionCheckers&) const final;
InterpolationValue MaybeConvertSVGValue(
const SVGPropertyBase& svg_value) const final;
SVGPropertyBase* AppliedSVGValue(const InterpolableValue&,
const NonInterpolableValue*) const final;
};
} // namespace blink
#endif // SVGIntegerInterpolationType_h