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

Unified Diff: content/browser/geolocation/network_location_request.cc

Issue 121033002: Update uses of UTF conversions in content/ to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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
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);

Powered by Google App Engine
This is Rietveld 408576698