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

Unified Diff: cc/layers/layer_proto_converter.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/ipc/cc_param_traits.cc ('k') | cc/layers/nine_patch_layer_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layers/layer_proto_converter.cc
diff --git a/cc/layers/layer_proto_converter.cc b/cc/layers/layer_proto_converter.cc
index 25dd803c1ef17aece080cef7b4e831517b522ab8..ff1632cc5649fcd582246d520b31301d01200b09 100644
--- a/cc/layers/layer_proto_converter.cc
+++ b/cc/layers/layer_proto_converter.cc
@@ -57,7 +57,7 @@ void LayerProtoConverter::SerializeLayerProperties(
LayerTreeHost* host,
proto::LayerUpdate* layer_update) {
TRACE_EVENT0("cc.remote", "LayerProtoConverter::SerializeLayerProperties");
- for (auto layer : host->LayersThatShouldPushProperties())
+ for (auto* layer : host->LayersThatShouldPushProperties())
layer->ToLayerPropertiesProto(layer_update);
host->LayersThatShouldPushProperties().clear();
}
« no previous file with comments | « cc/ipc/cc_param_traits.cc ('k') | cc/layers/nine_patch_layer_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698