| Index: third_party/WebKit/Source/modules/bluetooth/BluetoothUUID.cpp
|
| diff --git a/third_party/WebKit/Source/modules/bluetooth/BluetoothUUID.cpp b/third_party/WebKit/Source/modules/bluetooth/BluetoothUUID.cpp
|
| index 3e284b403c61958a9ae7271c0743b0d88be16aef..47c782e472b119e9f3c3c46628d308bb47e80dec 100644
|
| --- a/third_party/WebKit/Source/modules/bluetooth/BluetoothUUID.cpp
|
| +++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothUUID.cpp
|
| @@ -366,8 +366,9 @@ String BluetoothUUID::getDescriptor(StringOrUnsignedLong name,
|
| String BluetoothUUID::canonicalUUID(unsigned alias) {
|
| StringBuilder builder;
|
| builder.reserveCapacity(36 /* 36 chars or 128 bits, length of a UUID */);
|
| - appendUnsignedAsHexFixedSize(
|
| - alias, builder, 8 /* 8 chars or 32 bits, prefix length */, Lowercase);
|
| + HexNumber::appendUnsignedAsHexFixedSize(
|
| + alias, builder, 8 /* 8 chars or 32 bits, prefix length */,
|
| + HexNumber::Lowercase);
|
|
|
| builder.append("-0000-1000-8000-00805f9b34fb");
|
| return builder.toString();
|
|
|