summaryrefslogtreecommitdiffstats
path: root/ui/base/animation/tween.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ui/base/animation/tween.cc')
-rw-r--r--ui/base/animation/tween.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/ui/base/animation/tween.cc b/ui/base/animation/tween.cc
index 2991ae6..ac6fa26 100644
--- a/ui/base/animation/tween.cc
+++ b/ui/base/animation/tween.cc
@@ -44,12 +44,6 @@ double Tween::CalculateValue(Tween::Type type, double state) {
case EASE_OUT:
return 1.0 - pow(1.0 - state, 2);
- case EASE_OUT_2:
- return 1.0 - pow(1.0 - state, 3);
-
- case EASE_OUT_3:
- return 1.0 - pow(1.0 - state, 4);
-
case SMOOTH_IN_OUT:
return sin(state);