| Index: device/bluetooth/bluetooth_uuid.cc
 | 
| diff --git a/device/bluetooth/bluetooth_uuid.cc b/device/bluetooth/bluetooth_uuid.cc
 | 
| index 714d1c5c3409ddffbe8357926e2c131fed1cff18..d5933ccc1cdd32a7ff895031ca2d8ef54179a635 100644
 | 
| --- a/device/bluetooth/bluetooth_uuid.cc
 | 
| +++ b/device/bluetooth/bluetooth_uuid.cc
 | 
| @@ -40,7 +40,7 @@ void GetCanonicalUuid(std::string uuid,
 | 
|        if (uuid[i] != '-')
 | 
|          return;
 | 
|      } else {
 | 
| -      if (!IsHexDigit(uuid[i]))
 | 
| +      if (!base::IsHexDigit(uuid[i]))
 | 
|          return;
 | 
|        uuid[i] = base::ToLowerASCII(uuid[i]);
 | 
|      }
 | 
| 
 |