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

Unified Diff: cc/trees/damage_tracker.h

Issue 2834123002: cc: Replace render surface layer list with a render surface list (Closed)
Patch Set: Address review comments Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/test/layer_test_common.cc ('k') | cc/trees/damage_tracker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/damage_tracker.h
diff --git a/cc/trees/damage_tracker.h b/cc/trees/damage_tracker.h
index c6d2446bda5b8a6b2a67d98e4877476ce95aa6df..751eeb977e5b749503ec8c83fb9224cdb2aed576 100644
--- a/cc/trees/damage_tracker.h
+++ b/cc/trees/damage_tracker.h
@@ -32,8 +32,9 @@ class CC_EXPORT DamageTracker {
static std::unique_ptr<DamageTracker> Create();
~DamageTracker();
- static void UpdateDamageTracking(LayerTreeImpl* layer_tree_impl,
- const LayerImplList& render_surface_list);
+ static void UpdateDamageTracking(
+ LayerTreeImpl* layer_tree_impl,
+ const RenderSurfaceList& render_surface_list);
void DidDrawDamagedArea() { current_damage_ = DamageAccumulator(); }
void AddDamageNextUpdate(const gfx::Rect& dmg) { current_damage_.Union(dmg); }
« no previous file with comments | « cc/test/layer_test_common.cc ('k') | cc/trees/damage_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698