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

// Copyright 2020 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/animation_utils.h"

#include "third_party/blink/renderer/core/css/properties/computed_style_utils.h"
#include "third_party/blink/renderer/core/css/properties/css_property_ref.h"
#include "third_party/blink/renderer/core/css/resolver/style_resolver.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/style/computed_style.h"

namespace blink {

const CSSValue* AnimationUtils::KeyframeValueFromComputedStyle(
    const PropertyHandle& property,
    const ComputedStyle& style,
    const Document& document,
    const LayoutObject* layout_object) {}

void AnimationUtils::ForEachInterpolatedPropertyValue(
    Element* target,
    const PropertyHandleSet& properties,
    ActiveInterpolationsMap& interpolations,
    base::FunctionRef<void(PropertyHandle, const CSSValue*)> callback) {}

}  // namespace blink