| Index: cc/animation_curve.cc
|
| diff --git a/cc/animation_curve.cc b/cc/animation_curve.cc
|
| deleted file mode 100644
|
| index 0fe49e9cf684552fc8c63629109c40a655a593dd..0000000000000000000000000000000000000000
|
| --- a/cc/animation_curve.cc
|
| +++ /dev/null
|
| @@ -1,30 +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.
|
| -
|
| -#include "cc/animation_curve.h"
|
| -
|
| -#include "base/logging.h"
|
| -
|
| -namespace cc {
|
| -
|
| -const FloatAnimationCurve* AnimationCurve::ToFloatAnimationCurve() const {
|
| - DCHECK(Type() == AnimationCurve::Float);
|
| - return static_cast<const FloatAnimationCurve*>(this);
|
| -}
|
| -
|
| -AnimationCurve::CurveType FloatAnimationCurve::Type() const {
|
| - return Float;
|
| -}
|
| -
|
| -const TransformAnimationCurve* AnimationCurve::ToTransformAnimationCurve()
|
| - const {
|
| - DCHECK(Type() == AnimationCurve::Transform);
|
| - return static_cast<const TransformAnimationCurve*>(this);
|
| -}
|
| -
|
| -AnimationCurve::CurveType TransformAnimationCurve::Type() const {
|
| - return Transform;
|
| -}
|
| -
|
| -} // namespace cc
|
|
|