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

Unified Diff: device/bluetooth/bluetooth_device_mac.mm

Issue 279503003: [Bluetooth, Mac] Use lowercase for the bluetooth device address for M36. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/bluetooth_device_mac.mm
diff --git a/device/bluetooth/bluetooth_device_mac.mm b/device/bluetooth/bluetooth_device_mac.mm
index 73dc8bf9ea3284f46bdcd23d2b6e5b66cb3a11e9..d838bf03bf3e47b2bc779e3ee81f7f674eda41f8 100644
--- a/device/bluetooth/bluetooth_device_mac.mm
+++ b/device/bluetooth/bluetooth_device_mac.mm
@@ -244,7 +244,8 @@ std::string BluetoothDeviceMac::GetDeviceAddress(IOBluetoothDevice* device) {
std::string BluetoothDeviceMac::NormalizeAddress(const std::string& address) {
std::string normalized;
base::ReplaceChars(address, "-", ":", &normalized);
- StringToUpperASCII(&normalized);
+ // TODO(isherman): Restore StringToUpperASCII(&normalized) call for M37.
+ // http://crbug.com/371014
return normalized;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698