Index: chrome/common/chrome_content_client.cc |
diff --git a/chrome/common/chrome_content_client.cc b/chrome/common/chrome_content_client.cc |
index f67c51cd06cef4a6dc91b9903970e1b9f923b27d..f64e323742bae73b0efd87cb7e6dcbcd3fcb5273 100644 |
--- a/chrome/common/chrome_content_client.cc |
+++ b/chrome/common/chrome_content_client.cc |
@@ -502,7 +502,7 @@ content::PepperPluginInfo* ChromeContentClient::FindMostRecentPlugin( |
std::map<PluginSortKey, content::PepperPluginInfo*> plugin_map; |
- for (const auto& plugin : plugins) { |
+ for (auto* plugin : plugins) { |
Version version(plugin->version); |
DCHECK(version.IsValid()); |
plugin_map[PluginSortKey(version, plugin->is_debug, |