Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(164)

Side by Side Diff: cc/trees/layer_tree_host_impl.h

Issue 816453008: cc: Split tiling set raster queues into all and required. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cc/test/fake_tile_manager_client.h ('k') | cc/trees/layer_tree_host_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CC_TREES_LAYER_TREE_HOST_IMPL_H_ 5 #ifndef CC_TREES_LAYER_TREE_HOST_IMPL_H_
6 #define CC_TREES_LAYER_TREE_HOST_IMPL_H_ 6 #define CC_TREES_LAYER_TREE_HOST_IMPL_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 236
237 // RendererClient implementation. 237 // RendererClient implementation.
238 void SetFullRootLayerDamage() override; 238 void SetFullRootLayerDamage() override;
239 239
240 // TileManagerClient implementation. 240 // TileManagerClient implementation.
241 const std::vector<PictureLayerImpl*>& GetPictureLayers() const override; 241 const std::vector<PictureLayerImpl*>& GetPictureLayers() const override;
242 void NotifyReadyToActivate() override; 242 void NotifyReadyToActivate() override;
243 void NotifyReadyToDraw() override; 243 void NotifyReadyToDraw() override;
244 void NotifyTileStateChanged(const Tile* tile) override; 244 void NotifyTileStateChanged(const Tile* tile) override;
245 void BuildRasterQueue(RasterTilePriorityQueue* queue, 245 void BuildRasterQueue(RasterTilePriorityQueue* queue,
246 TreePriority tree_priority) override; 246 TreePriority tree_priority,
247 RasterTilePriorityQueue::Type type) override;
247 void BuildEvictionQueue(EvictionTilePriorityQueue* queue, 248 void BuildEvictionQueue(EvictionTilePriorityQueue* queue,
248 TreePriority tree_priority) override; 249 TreePriority tree_priority) override;
249 250
250 // ScrollbarAnimationControllerClient implementation. 251 // ScrollbarAnimationControllerClient implementation.
251 void PostDelayedScrollbarFade(const base::Closure& start_fade, 252 void PostDelayedScrollbarFade(const base::Closure& start_fade,
252 base::TimeDelta delay) override; 253 base::TimeDelta delay) override;
253 void SetNeedsScrollbarAnimationFrame() override; 254 void SetNeedsScrollbarAnimationFrame() override;
254 255
255 // OutputSurfaceClient implementation. 256 // OutputSurfaceClient implementation.
256 void DeferredInitialize() override; 257 void DeferredInitialize() override;
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after
729 730
730 bool requires_high_res_to_draw_; 731 bool requires_high_res_to_draw_;
731 bool required_for_draw_tile_is_top_of_raster_queue_; 732 bool required_for_draw_tile_is_top_of_raster_queue_;
732 733
733 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); 734 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl);
734 }; 735 };
735 736
736 } // namespace cc 737 } // namespace cc
737 738
738 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ 739 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_
OLDNEW
« no previous file with comments | « cc/test/fake_tile_manager_client.h ('k') | cc/trees/layer_tree_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698