Commit 8468b4eb authored by erikchen's avatar erikchen Committed by Commit bot

Replace -[IOBluetoothL2CAPChannel getDevice] with -[IOBluetoothL2CAPChannel device].

The former method is deprecated, the latter is not. They have the same
functionality.
https://developer.apple.com/library/mac/releasenotes/General/MacOSXLionAPIDiffs/IOBluetooth.html

BUG=592663

Review URL: https://codereview.chromium.org/1813533002

Cr-Commit-Position: refs/heads/master@{#381618}
parent 3eb05e63
...@@ -116,7 +116,7 @@ void BluetoothL2capChannelMac::SetSocket(BluetoothSocketMac* socket) { ...@@ -116,7 +116,7 @@ void BluetoothL2capChannelMac::SetSocket(BluetoothSocketMac* socket) {
} }
IOBluetoothDevice* BluetoothL2capChannelMac::GetDevice() { IOBluetoothDevice* BluetoothL2capChannelMac::GetDevice() {
return [channel_ getDevice]; return [channel_ device];
} }
uint16_t BluetoothL2capChannelMac::GetOutgoingMTU() { uint16_t BluetoothL2capChannelMac::GetOutgoingMTU() {
...@@ -142,7 +142,7 @@ void BluetoothL2capChannelMac::OnChannelOpenComplete( ...@@ -142,7 +142,7 @@ void BluetoothL2capChannelMac::OnChannelOpenComplete(
} }
socket()->OnChannelOpenComplete( socket()->OnChannelOpenComplete(
BluetoothClassicDeviceMac::GetDeviceAddress([channel getDevice]), status); BluetoothClassicDeviceMac::GetDeviceAddress([channel device]), status);
} }
void BluetoothL2capChannelMac::OnChannelClosed( void BluetoothL2capChannelMac::OnChannelClosed(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment