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 3ed709218fe33388a5d823588a4bf4b9df9f36db..8fb6e6a907621b9382f7828b031a9886ed6fdb40 100644 |
--- a/content/browser/geolocation/network_location_request.cc |
+++ b/content/browser/geolocation/network_location_request.cc |
@@ -262,7 +262,7 @@ void AddWifiData(const WifiData& wifi_data, |
iter != access_points_by_signal_strength.end(); |
++iter) { |
base::DictionaryValue* wifi_dict = new base::DictionaryValue(); |
- AddString("macAddress", UTF16ToUTF8((*iter)->mac_address), wifi_dict); |
+ AddString("macAddress", base::UTF16ToUTF8((*iter)->mac_address), wifi_dict); |
AddInteger("signalStrength", (*iter)->radio_signal_strength, wifi_dict); |
AddInteger("age", age_milliseconds, wifi_dict); |
AddInteger("channel", (*iter)->channel, wifi_dict); |