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

Unified Diff: device/bluetooth/bluetooth_l2cap_channel_mac.mm

Issue 1813533002: Replace -[IOBluetoothL2CAPChannel getDevice] with -[IOBluetoothL2CAPChannel device]. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@temp20_107_keychain
Patch Set: Created 4 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/bluetooth_l2cap_channel_mac.mm
diff --git a/device/bluetooth/bluetooth_l2cap_channel_mac.mm b/device/bluetooth/bluetooth_l2cap_channel_mac.mm
index b136d27f2f4470c5b5e72e25e682d2d8840573d5..f0c306684e19f7e91988562c8506acac1ed24627 100644
--- a/device/bluetooth/bluetooth_l2cap_channel_mac.mm
+++ b/device/bluetooth/bluetooth_l2cap_channel_mac.mm
@@ -116,7 +116,7 @@ void BluetoothL2capChannelMac::SetSocket(BluetoothSocketMac* socket) {
}
IOBluetoothDevice* BluetoothL2capChannelMac::GetDevice() {
- return [channel_ getDevice];
+ return [channel_ device];
}
uint16_t BluetoothL2capChannelMac::GetOutgoingMTU() {
@@ -142,7 +142,7 @@ void BluetoothL2capChannelMac::OnChannelOpenComplete(
}
socket()->OnChannelOpenComplete(
- BluetoothClassicDeviceMac::GetDeviceAddress([channel getDevice]), status);
+ BluetoothClassicDeviceMac::GetDeviceAddress([channel device]), status);
}
void BluetoothL2capChannelMac::OnChannelClosed(
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698