| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "device/bluetooth/bluetooth_channel_mac.h" | 5 #include "device/bluetooth/bluetooth_channel_mac.h" |
| 6 | 6 |
| 7 #import <IOBluetooth/IOBluetooth.h> | 7 #import <IOBluetooth/IOBluetooth.h> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "device/bluetooth/bluetooth_device_mac.h" | 10 #include "device/bluetooth/bluetooth_classic_device_mac.h" |
| 11 | 11 |
| 12 namespace device { | 12 namespace device { |
| 13 | 13 |
| 14 BluetoothChannelMac::BluetoothChannelMac() : socket_(NULL) { | 14 BluetoothChannelMac::BluetoothChannelMac() : socket_(NULL) { |
| 15 } | 15 } |
| 16 | 16 |
| 17 BluetoothChannelMac::~BluetoothChannelMac() { | 17 BluetoothChannelMac::~BluetoothChannelMac() { |
| 18 } | 18 } |
| 19 | 19 |
| 20 void BluetoothChannelMac::SetSocket(BluetoothSocketMac* socket) { | 20 void BluetoothChannelMac::SetSocket(BluetoothSocketMac* socket) { |
| 21 DCHECK(!socket_); | 21 DCHECK(!socket_); |
| 22 socket_ = socket; | 22 socket_ = socket; |
| 23 } | 23 } |
| 24 | 24 |
| 25 std::string BluetoothChannelMac::GetDeviceAddress() { | 25 std::string BluetoothChannelMac::GetDeviceAddress() { |
| 26 return BluetoothDeviceMac::GetDeviceAddress(GetDevice()); | 26 return BluetoothClassicDeviceMac::GetDeviceAddress(GetDevice()); |
| 27 } | 27 } |
| 28 | 28 |
| 29 } // namespace device | 29 } // namespace device |
| OLD | NEW |