blob: 2d07313864c3ea8d129a75f9138e1ac325391e32 [file] [log] [blame]
// Copyright 2016 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 CSSPositionAxisListInterpolationType_h
#define CSSPositionAxisListInterpolationType_h
#include "core/animation/CSSLengthListInterpolationType.h"
namespace blink {
class CSSPositionAxisListInterpolationType
: public CSSLengthListInterpolationType {
public:
CSSPositionAxisListInterpolationType(PropertyHandle property)
: CSSLengthListInterpolationType(property) {}
static InterpolationValue convertPositionAxisCSSValue(const CSSValue&);
private:
InterpolationValue maybeConvertValue(const CSSValue&,
const StyleResolverState*,
ConversionCheckers&) const final;
};
} // namespace blink
#endif // CSSPositionAxisListInterpolationType_h