summaryrefslogtreecommitdiffstats
path: root/device/bluetooth/bluetooth_device_win.cc
diff options
context:
space:
mode:
authorisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-17 05:49:46 +0000
committerisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-17 05:49:46 +0000
commitdb00ff839b2b71c625cd3b0b516143ad9e0c590f (patch)
treec271d85bab1d310747a1b49da7a7299c9a72c819 /device/bluetooth/bluetooth_device_win.cc
parent1cbaeba08f359b9a3c624494d9844c5d5880cd8c (diff)
downloadchromium_src-db00ff839b2b71c625cd3b0b516143ad9e0c590f.zip
chromium_src-db00ff839b2b71c625cd3b0b516143ad9e0c590f.tar.gz
chromium_src-db00ff839b2b71c625cd3b0b516143ad9e0c590f.tar.bz2
[Bluetooth] Standardize Bluetooth device address format to XX:XX:XX:XX:XX:XX.
BUG=371014 TEST=device_unittests R=keybuk@chromium.org Review URL: https://codereview.chromium.org/288903003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271179 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'device/bluetooth/bluetooth_device_win.cc')
-rw-r--r--device/bluetooth/bluetooth_device_win.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/device/bluetooth/bluetooth_device_win.cc b/device/bluetooth/bluetooth_device_win.cc
index 59e11c4..d5e9e77 100644
--- a/device/bluetooth/bluetooth_device_win.cc
+++ b/device/bluetooth/bluetooth_device_win.cc
@@ -39,7 +39,7 @@ BluetoothDeviceWin::BluetoothDeviceWin(
net_log_(net_log),
net_log_source_(net_log_source) {
name_ = state.name;
- address_ = state.address;
+ address_ = CanonicalizeAddress(state.address);
bluetooth_class_ = state.bluetooth_class;
visible_ = state.visible;
connected_ = state.connected;