Index: content/browser/geolocation/network_location_request.cc |
diff --git a/content/browser/geolocation/network_location_request.cc b/content/browser/geolocation/network_location_request.cc |
index 327cb2d5eef655b96a70bcb0ebdae99b6683aa1e..18b052691b57dbd034abd4b3b549e41394c3fd84 100644 |
--- a/content/browser/geolocation/network_location_request.cc |
+++ b/content/browser/geolocation/network_location_request.cc |
@@ -253,7 +253,7 @@ void AddWifiData(const WifiData& wifi_data, |
access_points_by_signal_strength.insert(&ap_data); |
base::ListValue* wifi_access_point_list = new base::ListValue(); |
- for (const auto& ap_data : access_points_by_signal_strength) { |
+ for (auto* ap_data : access_points_by_signal_strength) { |
base::DictionaryValue* wifi_dict = new base::DictionaryValue(); |
AddString("macAddress", base::UTF16ToUTF8(ap_data->mac_address), wifi_dict); |
AddInteger("signalStrength", ap_data->radio_signal_strength, wifi_dict); |