Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Unified Diff: third_party/WebKit/Source/core/animation/TransitionKeyframe.cpp

Issue 2651553004: Add TransitionKeyframe class for CSS Transition refactor (Closed)
Patch Set: Header Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/animation/TransitionKeyframe.cpp
diff --git a/third_party/WebKit/Source/core/animation/TransitionKeyframe.cpp b/third_party/WebKit/Source/core/animation/TransitionKeyframe.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..ec72a4976556442eca947c28ce6af775f5bac72e
--- /dev/null
+++ b/third_party/WebKit/Source/core/animation/TransitionKeyframe.cpp
@@ -0,0 +1,49 @@
+// 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/TransitionKeyframe.h"
+
+#include "core/animation/CompositorAnimations.h"
+#include "core/animation/InterpolationType.h"
+#include "core/animation/PairwiseInterpolationValue.h"
+#include "core/animation/TransitionInterpolation.h"
+
+namespace blink {
+
+void TransitionKeyframe::setCompositorValue(
+ RefPtr<AnimatableValue> compositorValue) {
+ DCHECK_EQ(
+ CompositorAnimations::isCompositableProperty(m_property.cssProperty()),
+ static_cast<bool>(compositorValue.get()));
+ m_compositorValue = std::move(compositorValue);
+}
+
+PropertyHandleSet TransitionKeyframe::properties() const {
+ PropertyHandleSet result;
+ result.insert(m_property);
+ return result;
+}
+
+PassRefPtr<Keyframe::PropertySpecificKeyframe>
+TransitionKeyframe::createPropertySpecificKeyframe(
+ const PropertyHandle& property) const {
+ DCHECK(property == m_property);
+ return PropertySpecificKeyframe::create(offset(), &easing(), composite(),
+ m_value->clone(), m_compositorValue);
+}
+
+PassRefPtr<Interpolation>
+TransitionKeyframe::PropertySpecificKeyframe::createInterpolation(
+ const PropertyHandle& property,
+ const Keyframe::PropertySpecificKeyframe& otherSuperClass) const {
+ const PropertySpecificKeyframe& other =
+ toTransitionPropertySpecificKeyframe(otherSuperClass);
+ DCHECK(m_value->type() == other.m_value->type());
+ return TransitionInterpolation::create(
+ property, m_value->type(), m_value->value().clone(),
+ other.m_value->value().clone(), m_compositorValue,
+ other.m_compositorValue);
+}
+
+} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698