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

Unified Diff: cc/blink/web_float_animation_curve_impl.cc

Issue 1616653002: CC Animation: Move files from cc_blink to Source/platform/animation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Fix copyrights and years. Created 4 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
« no previous file with comments | « cc/blink/web_float_animation_curve_impl.h ('k') | cc/blink/web_float_animation_curve_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/blink/web_float_animation_curve_impl.cc
diff --git a/cc/blink/web_float_animation_curve_impl.cc b/cc/blink/web_float_animation_curve_impl.cc
deleted file mode 100644
index ae57858ac7fb0a67b7577e3d74e2e5906967637e..0000000000000000000000000000000000000000
--- a/cc/blink/web_float_animation_curve_impl.cc
+++ /dev/null
@@ -1,90 +0,0 @@
-// 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 "cc/blink/web_float_animation_curve_impl.h"
-
-#include "cc/animation/animation_curve.h"
-#include "cc/animation/keyframed_animation_curve.h"
-#include "cc/animation/timing_function.h"
-#include "cc/blink/web_animation_curve_common.h"
-
-using blink::WebFloatKeyframe;
-
-namespace cc_blink {
-
-WebFloatAnimationCurveImpl::WebFloatAnimationCurveImpl()
- : curve_(cc::KeyframedFloatAnimationCurve::Create()) {
-}
-
-WebFloatAnimationCurveImpl::~WebFloatAnimationCurveImpl() {
-}
-
-blink::WebCompositorAnimationCurve::AnimationCurveType
-WebFloatAnimationCurveImpl::type() const {
- return blink::WebCompositorAnimationCurve::AnimationCurveTypeFloat;
-}
-
-void WebFloatAnimationCurveImpl::add(const WebFloatKeyframe& keyframe) {
- add(keyframe, TimingFunctionTypeEase);
-}
-
-void WebFloatAnimationCurveImpl::add(const WebFloatKeyframe& keyframe,
- TimingFunctionType type) {
- curve_->AddKeyframe(
- cc::FloatKeyframe::Create(base::TimeDelta::FromSecondsD(keyframe.time),
- keyframe.value, CreateTimingFunction(type)));
-}
-
-void WebFloatAnimationCurveImpl::add(const WebFloatKeyframe& keyframe,
- double x1,
- double y1,
- double x2,
- double y2) {
- curve_->AddKeyframe(cc::FloatKeyframe::Create(
- base::TimeDelta::FromSecondsD(keyframe.time), keyframe.value,
- cc::CubicBezierTimingFunction::Create(x1, y1, x2, y2)));
-}
-
-void WebFloatAnimationCurveImpl::add(const WebFloatKeyframe& keyframe,
- int steps,
- float steps_start_offset) {
- curve_->AddKeyframe(cc::FloatKeyframe::Create(
- base::TimeDelta::FromSecondsD(keyframe.time), keyframe.value,
- cc::StepsTimingFunction::Create(steps, steps_start_offset)));
-}
-
-void WebFloatAnimationCurveImpl::setLinearTimingFunction() {
- curve_->SetTimingFunction(nullptr);
-}
-
-void WebFloatAnimationCurveImpl::setCubicBezierTimingFunction(
- TimingFunctionType type) {
- curve_->SetTimingFunction(CreateTimingFunction(type));
-}
-
-void WebFloatAnimationCurveImpl::setCubicBezierTimingFunction(double x1,
- double y1,
- double x2,
- double y2) {
- curve_->SetTimingFunction(
- cc::CubicBezierTimingFunction::Create(x1, y1, x2, y2));
-}
-
-void WebFloatAnimationCurveImpl::setStepsTimingFunction(
- int number_of_steps,
- float steps_start_offset) {
- curve_->SetTimingFunction(
- cc::StepsTimingFunction::Create(number_of_steps, steps_start_offset));
-}
-
-float WebFloatAnimationCurveImpl::getValue(double time) const {
- return curve_->GetValue(base::TimeDelta::FromSecondsD(time));
-}
-
-scoped_ptr<cc::AnimationCurve>
-WebFloatAnimationCurveImpl::CloneToAnimationCurve() const {
- return curve_->Clone();
-}
-
-} // namespace cc_blink
« no previous file with comments | « cc/blink/web_float_animation_curve_impl.h ('k') | cc/blink/web_float_animation_curve_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698