| Index: device/bluetooth/bluetooth_device.cc
|
| diff --git a/device/bluetooth/bluetooth_device.cc b/device/bluetooth/bluetooth_device.cc
|
| index 6c72bccb5eaf3b88d76d90319d1cdcb1c6127b78..fe21162e9335f453e377960f70731698ea67fcb6 100644
|
| --- a/device/bluetooth/bluetooth_device.cc
|
| +++ b/device/bluetooth/bluetooth_device.cc
|
| @@ -241,7 +241,7 @@ std::string BluetoothDevice::CanonicalizeAddress(const std::string& address) {
|
|
|
| canonicalized[i] = ':';
|
| } else {
|
| - if (!IsHexDigit(canonicalized[i]))
|
| + if (!base::IsHexDigit(canonicalized[i]))
|
| return std::string();
|
|
|
| canonicalized[i] = base::ToUpperASCII(canonicalized[i]);
|
|
|