| 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 170d7e93e6a0873abd885c412942eab7b9bbb830..0ba42474a04de165976c9758de6f512d5962b75a 100644
|
| --- a/cc/trees/layer_tree_host_impl_unittest.cc
|
| +++ b/cc/trees/layer_tree_host_impl_unittest.cc
|
| @@ -92,7 +92,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) {
|
| @@ -139,9 +138,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 {}
|
| @@ -400,7 +396,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_;
|
|
|