diff options
Diffstat (limited to 'app/animation_container_unittest.cc')
-rw-r--r-- | app/animation_container_unittest.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/animation_container_unittest.cc b/app/animation_container_unittest.cc index 4046ae3..e4253c6 100644 --- a/app/animation_container_unittest.cc +++ b/app/animation_container_unittest.cc @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "app/animation.h" #include "app/animation_container.h" +#include "app/linear_animation.h" #include "app/test_animation_delegate.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" @@ -23,10 +23,10 @@ class MockObserver : public AnimationContainer::Observer { DISALLOW_COPY_AND_ASSIGN(MockObserver); }; -class TestAnimation : public Animation { +class TestAnimation : public LinearAnimation { public: TestAnimation(AnimationDelegate* delegate) - : Animation(20, 20, delegate) { + : LinearAnimation(20, 20, delegate) { } virtual void AnimateToState(double state) { |