blob: ad72e7a8cf43a82e7760ba5aae09b34252b601ba [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 CSSColorInterpolationType_h
#define CSSColorInterpolationType_h
#include "core/CSSValueKeywords.h"
#include "core/animation/CSSInterpolationType.h"
#include "platform/graphics/Color.h"
namespace blink {
class StyleColor;
class CSSColorInterpolationType : public CSSInterpolationType {
public:
CSSColorInterpolationType(CSSPropertyID property)
: CSSInterpolationType(property)
{ }
PassOwnPtr<InterpolationValue> maybeConvertUnderlyingValue(const InterpolationEnvironment&) const final;
void apply(const InterpolableValue&, const NonInterpolableValue*, InterpolationEnvironment&) const final;
static PassOwnPtr<InterpolableValue> createInterpolableColor(const Color&);
static PassOwnPtr<InterpolableValue> createInterpolableColor(CSSValueID);
static PassOwnPtr<InterpolableValue> createInterpolableColor(const StyleColor&);
static PassOwnPtr<InterpolableValue> maybeCreateInterpolableColor(const CSSValue&);
static Color resolveInterpolableColor(const InterpolableValue& interpolableColor, const StyleResolverState&, bool isVisited = false, bool isTextDecoration = false);
private:
PassOwnPtr<InterpolationValue> maybeConvertNeutral(const UnderlyingValue&, ConversionCheckers&) const final;
PassOwnPtr<InterpolationValue> maybeConvertInitial() const final;
PassOwnPtr<InterpolationValue> maybeConvertInherit(const StyleResolverState&, ConversionCheckers&) const final;
PassOwnPtr<InterpolationValue> maybeConvertValue(const CSSValue&, const StyleResolverState&, ConversionCheckers&) const final;
PassOwnPtr<InterpolationValue> convertStyleColorPair(const StyleColor&, const StyleColor&) const;
};
} // namespace blink
#endif // CSSColorInterpolationType_h