blob: d1f7e2a0c37ff7f945f114ca3b7810168d36c9c7 [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 CSSFontWeightInterpolationType_h
#define CSSFontWeightInterpolationType_h
#include "core/animation/CSSInterpolationType.h"
namespace blink {
class CSSFontWeightInterpolationType : public CSSInterpolationType {
public:
CSSFontWeightInterpolationType(PropertyHandle property)
: CSSInterpolationType(property) {
DCHECK_EQ(CssProperty().PropertyID(), CSSPropertyFontWeight);
}
InterpolationValue MaybeConvertStandardPropertyUnderlyingValue(
const ComputedStyle&) const final;
void ApplyStandardPropertyValue(const InterpolableValue&,
const NonInterpolableValue*,
StyleResolverState&) const final;
private:
InterpolationValue CreateFontWeightValue(FontSelectionValue) const;
InterpolationValue MaybeConvertNeutral(const InterpolationValue& underlying,
ConversionCheckers&) const final;
InterpolationValue MaybeConvertInitial(const StyleResolverState&,
ConversionCheckers&) const final;
InterpolationValue MaybeConvertInherit(const StyleResolverState&,
ConversionCheckers&) const final;
InterpolationValue MaybeConvertValue(const CSSValue&,
const StyleResolverState*,
ConversionCheckers&) const final;
};
} // namespace blink
#endif // CSSFontWeightInterpolationType_h