blob: 5701d9c85ccac3699ffc0f0c7c6d452f9df1054e [file] [log] [blame]
// Copyright 2017 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.
#include "core/animation/CSSTimeInterpolationType.h"
#include "core/css/CSSPrimitiveValue.h"
namespace blink {
InterpolationValue CSSTimeInterpolationType::MaybeConvertNeutral(
const InterpolationValue&,
ConversionCheckers&) const {
return InterpolationValue(InterpolableNumber::Create(0));
}
InterpolationValue CSSTimeInterpolationType::MaybeConvertValue(
const CSSValue& value,
const StyleResolverState*,
ConversionCheckers&) const {
if (!value.IsPrimitiveValue() || !ToCSSPrimitiveValue(value).IsTime())
return nullptr;
return InterpolationValue(
InterpolableNumber::Create(ToCSSPrimitiveValue(value).ComputeSeconds()));
}
const CSSValue* CSSTimeInterpolationType::CreateCSSValue(
const InterpolableValue& value,
const NonInterpolableValue*,
const StyleResolverState&) const {
return CSSPrimitiveValue::Create(ToInterpolableNumber(value).Value(),
CSSPrimitiveValue::UnitType::kSeconds);
}
} // namespace blink