| Index: ui/gfx/animation/tween.cc
|
| diff --git a/ui/gfx/animation/tween.cc b/ui/gfx/animation/tween.cc
|
| index e608ee58e1954ffb4874ae24ee5471bafc07ec0c..f9498d9b4380daa750bcbcf807ab197ff103a04d 100644
|
| --- a/ui/gfx/animation/tween.cc
|
| +++ b/ui/gfx/animation/tween.cc
|
| @@ -61,6 +61,9 @@ double Tween::CalculateValue(Tween::Type type, double state) {
|
| case LINEAR_OUT_SLOW_IN:
|
| return gfx::CubicBezier(0, 0, .2, 1).Solve(state);
|
|
|
| + case SLOW_OUT_LINEAR_IN:
|
| + return gfx::CubicBezier(0, 0, 1, .2).Solve(state);
|
| +
|
| case FAST_OUT_LINEAR_IN:
|
| return gfx::CubicBezier(0.4, 0, 1, 1).Solve(state);
|
|
|
|
|