Index: cc/animation/scrollbar_animation_controller_linear_fade_unittest.cc |
diff --git a/cc/animation/scrollbar_animation_controller_linear_fade_unittest.cc b/cc/animation/scrollbar_animation_controller_linear_fade_unittest.cc |
index 2c8f9938fa5da72e552ec1980e2f0d81607dbbe5..aa9b74fa289b699117fcf477479dfa4f0504e604 100644 |
--- a/cc/animation/scrollbar_animation_controller_linear_fade_unittest.cc |
+++ b/cc/animation/scrollbar_animation_controller_linear_fade_unittest.cc |
@@ -5,7 +5,7 @@ |
#include "cc/animation/scrollbar_animation_controller_linear_fade.h" |
#include "cc/layers/solid_color_scrollbar_layer_impl.h" |
-#include "cc/test/fake_impl_proxy.h" |
+#include "cc/test/fake_impl_task_runner_provider.h" |
#include "cc/test/fake_layer_tree_host_impl.h" |
#include "cc/test/geometry_test_utils.h" |
#include "cc/test/test_shared_bitmap_manager.h" |
@@ -21,7 +21,9 @@ class ScrollbarAnimationControllerLinearFadeTest |
public ScrollbarAnimationControllerClient { |
public: |
ScrollbarAnimationControllerLinearFadeTest() |
- : host_impl_(&proxy_, &shared_bitmap_manager_, &task_graph_runner_), |
+ : host_impl_(&task_runner_provider_, |
+ &shared_bitmap_manager_, |
+ &task_graph_runner_), |
did_request_redraw_(false), |
did_request_animate_(false) {} |
@@ -73,7 +75,7 @@ class ScrollbarAnimationControllerLinearFadeTest |
virtual ScrollbarOrientation orientation() const { return HORIZONTAL; } |
- FakeImplProxy proxy_; |
+ FakeImplTaskRunnerProvider task_runner_provider_; |
TestSharedBitmapManager shared_bitmap_manager_; |
TestTaskGraphRunner task_graph_runner_; |
FakeLayerTreeHostImpl host_impl_; |