#include "third_party/blink/renderer/core/animation/css_path_interpolation_type.h"
#include <memory>
#include <utility>
#include "base/memory/ptr_util.h"
#include "third_party/blink/renderer/core/animation/path_interpolation_functions.h"
#include "third_party/blink/renderer/core/css/css_path_value.h"
#include "third_party/blink/renderer/core/css/css_value_list.h"
#include "third_party/blink/renderer/core/css/resolver/style_resolver_state.h"
#include "third_party/blink/renderer/core/style/computed_style.h"
#include "third_party/blink/renderer/core/style/computed_style_constants.h"
#include "third_party/blink/renderer/core/style/shape_clip_path_operation.h"
#include "third_party/blink/renderer/core/style/shape_offset_path_operation.h"
namespace blink {
namespace {
const StylePath* GetPath(const CSSProperty& property,
const ComputedStyle& style) { … }
void SetPath(const CSSProperty& property,
ComputedStyleBuilder& builder,
scoped_refptr<blink::StylePath> path) { … }
}
void CSSPathInterpolationType::ApplyStandardPropertyValue(
const InterpolableValue& interpolable_value,
const NonInterpolableValue* non_interpolable_value,
StyleResolverState& state) const { … }
void CSSPathInterpolationType::Composite(
UnderlyingValueOwner& underlying_value_owner,
double underlying_fraction,
const InterpolationValue& value,
double interpolation_fraction) const { … }
InterpolationValue CSSPathInterpolationType::MaybeConvertNeutral(
const InterpolationValue& underlying,
ConversionCheckers& conversion_checkers) const { … }
InterpolationValue CSSPathInterpolationType::MaybeConvertInitial(
const StyleResolverState&,
ConversionCheckers&) const { … }
class InheritedPathChecker : public CSSInterpolationType::CSSConversionChecker { … };
InterpolationValue CSSPathInterpolationType::MaybeConvertInherit(
const StyleResolverState& state,
ConversionCheckers& conversion_checkers) const { … }
InterpolationValue CSSPathInterpolationType::MaybeConvertValue(
const CSSValue& value,
const StyleResolverState*,
ConversionCheckers&) const { … }
InterpolationValue
CSSPathInterpolationType::MaybeConvertStandardPropertyUnderlyingValue(
const ComputedStyle& style) const { … }
PairwiseInterpolationValue CSSPathInterpolationType::MaybeMergeSingles(
InterpolationValue&& start,
InterpolationValue&& end) const { … }
}