| Index: cc/trees/layer_tree_host_impl.h
|
| diff --git a/cc/trees/layer_tree_host_impl.h b/cc/trees/layer_tree_host_impl.h
|
| index ded20b2d92028bf8cb0939a4987374eeeeaa765d..20e1e70fc7c92277387969e2276bbd876e9de7e3 100644
|
| --- a/cc/trees/layer_tree_host_impl.h
|
| +++ b/cc/trees/layer_tree_host_impl.h
|
| @@ -250,12 +250,8 @@ class CC_EXPORT LayerTreeHostImpl
|
| void NotifyReadyToActivate() override;
|
| void NotifyReadyToDraw() override;
|
| void NotifyTileStateChanged(const Tile* tile) override;
|
| - scoped_ptr<RasterTilePriorityQueue> BuildRasterQueue(
|
| - TreePriority tree_priority,
|
| - RasterTilePriorityQueue::Type type) override;
|
| - scoped_ptr<EvictionTilePriorityQueue> BuildEvictionQueue(
|
| - TreePriority tree_priority) override;
|
| void SetIsLikelyToRequireADraw(bool is_likely_to_require_a_draw) override;
|
| + bool PendingTreeExists() override;
|
|
|
| // ScrollbarAnimationControllerClient implementation.
|
| void PostDelayedScrollbarFade(const base::Closure& start_fade,
|
| @@ -494,9 +490,6 @@ class CC_EXPORT LayerTreeHostImpl
|
| void InsertSwapPromiseMonitor(SwapPromiseMonitor* monitor);
|
| void RemoveSwapPromiseMonitor(SwapPromiseMonitor* monitor);
|
|
|
| - void GetPictureLayerImplPairs(std::vector<PictureLayerImpl::Pair>* layers,
|
| - bool need_valid_tile_priorities) const;
|
| -
|
| void SetRequiresHighResToDraw() { requires_high_res_to_draw_ = true; }
|
| void ResetRequiresHighResToDraw() { requires_high_res_to_draw_ = false; }
|
| bool RequiresHighResToDraw() const { return requires_high_res_to_draw_; }
|
| @@ -727,7 +720,6 @@ class CC_EXPORT LayerTreeHostImpl
|
| int id_;
|
|
|
| std::set<SwapPromiseMonitor*> swap_promise_monitor_;
|
| - std::vector<PictureLayerImpl::Pair> picture_layer_pairs_;
|
|
|
| bool requires_high_res_to_draw_;
|
| bool is_likely_to_require_a_draw_;
|
|
|