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

Unified Diff: device/bluetooth/test/mock_bluetooth_cbdescriptor_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/test/mock_bluetooth_cbdescriptor_mac.mm
diff --git a/device/bluetooth/test/mock_bluetooth_cbdescriptor_mac.mm b/device/bluetooth/test/mock_bluetooth_cbdescriptor_mac.mm
index 3a2f6152cc760c43c3c70542fa6d4aa04a1216fe..1e0d82b45d996a16a8d8085569e8c127c3386cdf 100644
--- a/device/bluetooth/test/mock_bluetooth_cbdescriptor_mac.mm
+++ b/device/bluetooth/test/mock_bluetooth_cbdescriptor_mac.mm
@@ -48,11 +48,11 @@ using base::scoped_nsobject;
}
- (CBUUID*)UUID {
- return _UUID.get();
+ return _UUID;
}
- (NSData*)value {
- return _value.get();
+ return _value;
}
- (CBDescriptor*)descriptor {
« no previous file with comments | « device/bluetooth/test/mock_bluetooth_cbcharacteristic_mac.mm ('k') | device/bluetooth/test/mock_bluetooth_cbperipheral_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698