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

Unified Diff: cc/trees/draw_property_utils.cc

Issue 2102833002: cc: Fixup cc to not use auto to deduce a raw pointer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 5 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/tiles/tile_manager_perftest.cc ('k') | cc/trees/layer_tree_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/draw_property_utils.cc
diff --git a/cc/trees/draw_property_utils.cc b/cc/trees/draw_property_utils.cc
index 1fe57213e6c7cc02c3146a455bd348c4b1830a4d..68e38e14c1cc40bae4e7245746931f1356e0984a 100644
--- a/cc/trees/draw_property_utils.cc
+++ b/cc/trees/draw_property_utils.cc
@@ -1119,13 +1119,13 @@ void VerifyClipTreeCalculations(const LayerImplList& layer_list,
if (property_trees->non_root_surfaces_enabled) {
ComputeClipsWithEffectTree(property_trees);
}
- for (auto layer : layer_list)
+ for (auto* layer : layer_list)
ComputeLayerClipRect(property_trees, layer);
}
void VerifyTransformTreeCalculations(const LayerImplList& layer_list,
PropertyTrees* property_trees) {
- for (auto layer : layer_list)
+ for (auto* layer : layer_list)
VerifyDrawTransformsMatch(layer, property_trees);
}
« no previous file with comments | « cc/tiles/tile_manager_perftest.cc ('k') | cc/trees/layer_tree_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698