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

Side by Side Diff: device/bluetooth/bluetooth_channel_mac.mm

Issue 341433004: [Bluetooth] Improve the adapter's awareness of connected devices. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Net TODO delta: +1 Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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>
8
7 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "device/bluetooth/bluetooth_device_mac.h"
8 11
9 namespace device { 12 namespace device {
10 13
11 BluetoothChannelMac::BluetoothChannelMac() : socket_(NULL) { 14 BluetoothChannelMac::BluetoothChannelMac() : socket_(NULL) {
12 } 15 }
13 16
14 BluetoothChannelMac::~BluetoothChannelMac() { 17 BluetoothChannelMac::~BluetoothChannelMac() {
15 } 18 }
16 19
17 void BluetoothChannelMac::SetSocket(BluetoothSocketMac* socket) { 20 void BluetoothChannelMac::SetSocket(BluetoothSocketMac* socket) {
18 DCHECK(!socket_); 21 DCHECK(!socket_);
19 socket_ = socket; 22 socket_ = socket;
20 } 23 }
21 24
25 std::string BluetoothChannelMac::GetDeviceAddress() {
26 return BluetoothDeviceMac::GetDeviceAddress(GetDevice());
27 }
28
22 } // namespace device 29 } // namespace device
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698