Index: content/browser/tracing/background_tracing_config_impl.cc |
diff --git a/content/browser/tracing/background_tracing_config_impl.cc b/content/browser/tracing/background_tracing_config_impl.cc |
index e964cfad5e8a1cc2e4d6d60e16a0a3f0d962a9d6..43db94f162d2bad49cba9e0b616099547e986eb7 100644 |
--- a/content/browser/tracing/background_tracing_config_impl.cc |
+++ b/content/browser/tracing/background_tracing_config_impl.cc |
@@ -145,7 +145,7 @@ void BackgroundTracingConfigImpl::IntoDict(base::DictionaryValue* dict) const { |
} |
std::unique_ptr<base::ListValue> configs_list(new base::ListValue()); |
- for (const auto& it : rules_) { |
+ for (auto* it : rules_) { |
std::unique_ptr<base::DictionaryValue> config_dict( |
new base::DictionaryValue()); |
DCHECK(it); |