| Index: device/bluetooth/bluetooth_uuid.cc
|
| diff --git a/device/bluetooth/bluetooth_uuid.cc b/device/bluetooth/bluetooth_uuid.cc
|
| index a62da21716416720f1abff5848a272f6d0dfbf2e..354c0d1b27fe8ae06a2b363b9ccd02f22063c125 100644
|
| --- a/device/bluetooth/bluetooth_uuid.cc
|
| +++ b/device/bluetooth/bluetooth_uuid.cc
|
| @@ -98,4 +98,8 @@ bool BluetoothUUID::operator!=(const BluetoothUUID& uuid) const {
|
| return canonical_value_ != uuid.canonical_value_;
|
| }
|
|
|
| +void PrintTo(const BluetoothUUID& uuid, std::ostream* out) {
|
| + *out << uuid.canonical_value();
|
| +}
|
| +
|
| } // namespace device
|
|
|