Commit 7de84840 authored by isherman@chromium.org's avatar isherman@chromium.org

[Bluetooth, Mac] Use lowercase for the bluetooth device address for M36.

This matches the current ChromeOS implementation.

BUG=355788
R=rpaquay@chromium.org

Review URL: https://codereview.chromium.org/279503003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@269596 0039d316-1c4b-4281-b951-d872f2087c98
parent de36240a
...@@ -253,7 +253,8 @@ std::string BluetoothDeviceMac::GetDeviceAddress(IOBluetoothDevice* device) { ...@@ -253,7 +253,8 @@ std::string BluetoothDeviceMac::GetDeviceAddress(IOBluetoothDevice* device) {
std::string BluetoothDeviceMac::NormalizeAddress(const std::string& address) { std::string BluetoothDeviceMac::NormalizeAddress(const std::string& address) {
std::string normalized; std::string normalized;
base::ReplaceChars(address, "-", ":", &normalized); base::ReplaceChars(address, "-", ":", &normalized);
StringToUpperASCII(&normalized); // TODO(isherman): Restore StringToUpperASCII(&normalized) call for M37.
// http://crbug.com/371014
return normalized; return normalized;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment