Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Unified Diff: device/bluetooth/bluetooth_remote_gatt_service_mac.mm

Issue 2906883004: bluetooth: macOS: Removing useless |.get()| (Closed)
Patch Set: Merge from top of tree Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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*
« no previous file with comments | « device/bluetooth/bluetooth_remote_gatt_characteristic_mac.mm ('k') | device/bluetooth/test/bluetooth_test_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698