Index: third_party/WebKit/public/platform/WebCompositorAnimationCurve.h |
diff --git a/third_party/WebKit/public/platform/WebCompositorAnimationCurve.h b/third_party/WebKit/public/platform/WebCompositorAnimationCurve.h |
deleted file mode 100644 |
index 50993b6a5a0dd192308347070661d649abbec416..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/public/platform/WebCompositorAnimationCurve.h |
+++ /dev/null |
@@ -1,34 +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. |
- |
-#ifndef WebCompositorAnimationCurve_h |
-#define WebCompositorAnimationCurve_h |
- |
-namespace blink { |
- |
-class WebCompositorAnimationCurve { |
-public: |
- virtual ~WebCompositorAnimationCurve() { } |
- |
- enum TimingFunctionType { |
- TimingFunctionTypeEase, |
- TimingFunctionTypeEaseIn, |
- TimingFunctionTypeEaseOut, |
- TimingFunctionTypeEaseInOut, |
- TimingFunctionTypeLinear |
- }; |
- |
- enum AnimationCurveType { |
- AnimationCurveTypeFilter, |
- AnimationCurveTypeFloat, |
- AnimationCurveTypeScrollOffset, |
- AnimationCurveTypeTransform, |
- }; |
- |
- virtual AnimationCurveType type() const = 0; |
-}; |
- |
-} // namespace blink |
- |
-#endif // WebCompositorAnimationCurve_h |