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

Unified Diff: cc/animation_curve.h

Issue 12822004: Part 3 of cc/ directory shuffles: animation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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/animation/scrollbar_animation_controller_linear_fade_unittest.cc ('k') | cc/animation_curve.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/animation_curve.h
diff --git a/cc/animation_curve.h b/cc/animation_curve.h
deleted file mode 100644
index 0c54642cf6965510bc8285f3812d8a095293993b..0000000000000000000000000000000000000000
--- a/cc/animation_curve.h
+++ /dev/null
@@ -1,56 +0,0 @@
-// Copyright 2012 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.
-
-#ifndef CC_ANIMATION_CURVE_H_
-#define CC_ANIMATION_CURVE_H_
-
-#include "base/memory/scoped_ptr.h"
-#include "cc/base/cc_export.h"
-#include "ui/gfx/transform.h"
-
-namespace cc {
-
-class FloatAnimationCurve;
-class TransformAnimationCurve;
-class TransformOperations;
-
-// An animation curve is a function that returns a value given a time.
-// There are currently only two types of curve, float and transform.
-class CC_EXPORT AnimationCurve {
- public:
- enum CurveType { Float, Transform };
-
- virtual ~AnimationCurve() {}
-
- virtual double Duration() const = 0;
- virtual CurveType Type() const = 0;
- virtual scoped_ptr<AnimationCurve> Clone() const = 0;
-
- const FloatAnimationCurve* ToFloatAnimationCurve() const;
- const TransformAnimationCurve* ToTransformAnimationCurve() const;
-};
-
-class CC_EXPORT FloatAnimationCurve : public AnimationCurve {
- public:
- virtual ~FloatAnimationCurve() {}
-
- virtual float GetValue(double t) const = 0;
-
- // Partial Animation implementation.
- virtual CurveType Type() const OVERRIDE;
-};
-
-class CC_EXPORT TransformAnimationCurve : public AnimationCurve {
- public:
- virtual ~TransformAnimationCurve() {}
-
- virtual gfx::Transform GetValue(double t) const = 0;
-
- // Partial Animation implementation.
- virtual CurveType Type() const OVERRIDE;
-};
-
-} // namespace cc
-
-#endif // CC_ANIMATION_CURVE_H_
« no previous file with comments | « cc/animation/scrollbar_animation_controller_linear_fade_unittest.cc ('k') | cc/animation_curve.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698