| Index: device/bluetooth/bluetooth_remote_gatt_service_mac.mm
|
| diff --git a/device/bluetooth/bluetooth_remote_gatt_service_mac.mm b/device/bluetooth/bluetooth_remote_gatt_service_mac.mm
|
| index 15ec871c4d9a4445f17a20fcef5bfac13ff65f5b..ca488187dd07f28740f5cae21feebbb7e2fa4bbe 100644
|
| --- a/device/bluetooth/bluetooth_remote_gatt_service_mac.mm
|
| +++ b/device/bluetooth/bluetooth_remote_gatt_service_mac.mm
|
| @@ -26,7 +26,7 @@ BluetoothRemoteGattServiceMac::BluetoothRemoteGattServiceMac(
|
| is_primary_(is_primary),
|
| is_discovery_complete_(false),
|
| discovery_pending_count_(0) {
|
| - uuid_ = BluetoothAdapterMac::BluetoothUUIDWithCBUUID([service_.get() UUID]);
|
| + uuid_ = BluetoothAdapterMac::BluetoothUUIDWithCBUUID([service_ UUID]);
|
| identifier_ = base::SysNSStringToUTF8(
|
| [NSString stringWithFormat:@"%s-%p", uuid_.canonical_value().c_str(),
|
| (void*)service_]);
|
| @@ -214,7 +214,7 @@ CBPeripheral* BluetoothRemoteGattServiceMac::GetCBPeripheral() const {
|
| }
|
|
|
| CBService* BluetoothRemoteGattServiceMac::GetService() const {
|
| - return service_.get();
|
| + return service_;
|
| }
|
|
|
| BluetoothRemoteGattCharacteristicMac*
|
|
|