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

// Copyright 2015 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/number_property_functions.h"

#include "third_party/blink/renderer/core/style/computed_style.h"

namespace blink {

std::optional<double> NumberPropertyFunctions::GetInitialNumber(
    const CSSProperty& property,
    const ComputedStyle& initial_style) {}

std::optional<double> NumberPropertyFunctions::GetNumber(
    const CSSProperty& property,
    const ComputedStyle& style) {}

double NumberPropertyFunctions::ClampNumber(const CSSProperty& property,
                                            double value) {}

bool NumberPropertyFunctions::SetNumber(const CSSProperty& property,
                                        ComputedStyleBuilder& builder,
                                        double value) {}

}  // namespace blink