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); |
} |