mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This caused us to lose our gn check certification. :( Turns out gn check was just ignoring all the header paths it didn't understand and so gn check passing for sky wasn't meaning much. I tried to straighten out some of the mess in this CL, but its going to take several more rounds of massaging before gn check passes again. On the bright side (almost) all of our headers are absolute now. Turns out my script (attached to the bug) didn't notice ../ includes but I'll fix that in the next patch. R=abarth@chromium.org BUG=435361 Review URL: https://codereview.chromium.org/746023002
69 lines
3.0 KiB
C++
69 lines
3.0 KiB
C++
// Copyright 2014 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 "sky/engine/config.h"
|
|
#include "sky/engine/core/animation/animatable/AnimatableValueKeyframe.h"
|
|
|
|
#include "sky/engine/core/animation/LegacyStyleInterpolation.h"
|
|
|
|
namespace blink {
|
|
|
|
AnimatableValueKeyframe::AnimatableValueKeyframe(const AnimatableValueKeyframe& copyFrom)
|
|
: Keyframe(copyFrom.m_offset, copyFrom.m_composite, copyFrom.m_easing)
|
|
{
|
|
for (PropertyValueMap::const_iterator iter = copyFrom.m_propertyValues.begin(); iter != copyFrom.m_propertyValues.end(); ++iter)
|
|
setPropertyValue(iter->key, iter->value.get());
|
|
}
|
|
|
|
PropertySet AnimatableValueKeyframe::properties() const
|
|
{
|
|
// This is not used in time-critical code, so we probably don't need to
|
|
// worry about caching this result.
|
|
PropertySet properties;
|
|
for (PropertyValueMap::const_iterator iter = m_propertyValues.begin(); iter != m_propertyValues.end(); ++iter)
|
|
properties.add(*iter.keys());
|
|
return properties;
|
|
}
|
|
|
|
PassRefPtr<Keyframe> AnimatableValueKeyframe::clone() const
|
|
{
|
|
return adoptRef(new AnimatableValueKeyframe(*this));
|
|
}
|
|
|
|
PassOwnPtr<Keyframe::PropertySpecificKeyframe> AnimatableValueKeyframe::createPropertySpecificKeyframe(CSSPropertyID property) const
|
|
{
|
|
return adoptPtr(new PropertySpecificKeyframe(offset(), &easing(), propertyValue(property), composite()));
|
|
}
|
|
|
|
AnimatableValueKeyframe::PropertySpecificKeyframe::PropertySpecificKeyframe(double offset, PassRefPtr<TimingFunction> easing, const AnimatableValue* value, AnimationEffect::CompositeOperation op)
|
|
: Keyframe::PropertySpecificKeyframe(offset, easing, op)
|
|
, m_value(const_cast<AnimatableValue*>(value))
|
|
{ }
|
|
|
|
AnimatableValueKeyframe::PropertySpecificKeyframe::PropertySpecificKeyframe(double offset, PassRefPtr<TimingFunction> easing, PassRefPtr<AnimatableValue> value)
|
|
: Keyframe::PropertySpecificKeyframe(offset, easing, AnimationEffect::CompositeReplace)
|
|
, m_value(value)
|
|
{
|
|
ASSERT(!isNull(m_offset));
|
|
}
|
|
|
|
PassOwnPtr<Keyframe::PropertySpecificKeyframe> AnimatableValueKeyframe::PropertySpecificKeyframe::cloneWithOffset(double offset) const
|
|
{
|
|
Keyframe::PropertySpecificKeyframe* theClone = new PropertySpecificKeyframe(offset, m_easing, m_value);
|
|
return adoptPtr(theClone);
|
|
}
|
|
|
|
PassRefPtr<Interpolation> AnimatableValueKeyframe::PropertySpecificKeyframe::createInterpolation(CSSPropertyID property, Keyframe::PropertySpecificKeyframe* end, Element*) const
|
|
{
|
|
AnimatableValuePropertySpecificKeyframe* to = toAnimatableValuePropertySpecificKeyframe(end);
|
|
return LegacyStyleInterpolation::create(value(), to->value(), property);
|
|
}
|
|
|
|
PassOwnPtr<Keyframe::PropertySpecificKeyframe> AnimatableValueKeyframe::PropertySpecificKeyframe::neutralKeyframe(double offset, PassRefPtr<TimingFunction> easing) const
|
|
{
|
|
return adoptPtr(new AnimatableValueKeyframe::PropertySpecificKeyframe(offset, easing, AnimatableValue::neutralValue(), AnimationEffect::CompositeAdd));
|
|
}
|
|
|
|
}
|