chromium/third_party/blink/renderer/core/animation/css_dynamic_range_limit_interpolation_type.cc

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/core/animation/css_dynamic_range_limit_interpolation_type.h"

#include "base/memory/scoped_refptr.h"
#include "third_party/blink/renderer/core/animation/interpolable_dynamic_range_limit.h"
#include "third_party/blink/renderer/core/css/resolver/style_builder_converter.h"
#include "third_party/blink/renderer/core/style/computed_style.h"

namespace blink {

class InheritedDynamicRangeLimitChecker
    : public CSSInterpolationType::CSSConversionChecker {};

InterpolationValue
CSSDynamicRangeLimitInterpolationType::ConvertDynamicRangeLimit(
    DynamicRangeLimit limit) {}

InterpolationValue CSSDynamicRangeLimitInterpolationType::MaybeConvertNeutral(
    const InterpolationValue& underlying,
    ConversionCheckers&) const {}

InterpolationValue CSSDynamicRangeLimitInterpolationType::MaybeConvertInitial(
    const StyleResolverState& state,
    ConversionCheckers& conversion_checkers) const {}

InterpolationValue CSSDynamicRangeLimitInterpolationType::MaybeConvertInherit(
    const StyleResolverState& state,
    ConversionCheckers& conversion_checkers) const {}

InterpolationValue CSSDynamicRangeLimitInterpolationType::MaybeConvertValue(
    const CSSValue& value,
    const StyleResolverState* state,
    ConversionCheckers& conversion_checkers) const {}

InterpolationValue CSSDynamicRangeLimitInterpolationType::
    MaybeConvertStandardPropertyUnderlyingValue(
        const ComputedStyle& style) const {}

void CSSDynamicRangeLimitInterpolationType::ApplyStandardPropertyValue(
    const InterpolableValue& interpolable_value,
    const NonInterpolableValue* non_interpolable_value,
    StyleResolverState& state) const {}

}  // namespace blink