| Index: cc/trees/layer_tree_host_impl_unittest.cc
|
| diff --git a/cc/trees/layer_tree_host_impl_unittest.cc b/cc/trees/layer_tree_host_impl_unittest.cc
|
| index 2e794a9fe258f7bea9435b9dfb8d824447428773..821a1d7b44fb2ef156bb72c433e64c9524ffd9de 100644
|
| --- a/cc/trees/layer_tree_host_impl_unittest.cc
|
| +++ b/cc/trees/layer_tree_host_impl_unittest.cc
|
| @@ -91,7 +91,6 @@ class LayerTreeHostImplTest : public testing::Test,
|
| did_request_redraw_(false),
|
| did_request_animate_(false),
|
| did_request_manage_tiles_(false),
|
| - did_upload_visible_tile_(false),
|
| reduce_memory_result_(true),
|
| current_limit_bytes_(0),
|
| current_priority_cutoff_value_(0) {
|
| @@ -138,9 +137,6 @@ class LayerTreeHostImplTest : public testing::Test,
|
| void SetNeedsManageTilesOnImplThread() override {
|
| did_request_manage_tiles_ = true;
|
| }
|
| - void DidInitializeVisibleTileOnImplThread() override {
|
| - did_upload_visible_tile_ = true;
|
| - }
|
| void SetNeedsCommitOnImplThread() override { did_request_commit_ = true; }
|
| void PostAnimationEventsToMainThreadOnImplThread(
|
| scoped_ptr<AnimationEventsVector> events) override {}
|
| @@ -399,7 +395,6 @@ class LayerTreeHostImplTest : public testing::Test,
|
| bool did_request_redraw_;
|
| bool did_request_animate_;
|
| bool did_request_manage_tiles_;
|
| - bool did_upload_visible_tile_;
|
| bool reduce_memory_result_;
|
| base::Closure scrollbar_fade_start_;
|
| base::TimeDelta requested_scrollbar_animation_delay_;
|
|
|