| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_DEVICE_MAC_H_ | 5 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_DEVICE_MAC_H_ |
| 6 #define DEVICE_BLUETOOTH_BLUETOOTH_DEVICE_MAC_H_ | 6 #define DEVICE_BLUETOOTH_BLUETOOTH_DEVICE_MAC_H_ |
| 7 | 7 |
| 8 #import <IOBluetooth/IOBluetooth.h> | 8 #import <IOBluetooth/IOBluetooth.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/mac/scoped_nsobject.h" | 13 #include "base/mac/scoped_nsobject.h" |
| 14 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
| 15 #include "device/bluetooth/bluetooth_device.h" | 15 #include "device/bluetooth/bluetooth_device.h" |
| 16 | 16 |
| 17 @class IOBluetoothDevice; | 17 @class IOBluetoothDevice; |
| 18 | 18 |
| 19 namespace device { | 19 namespace device { |
| 20 | 20 |
| 21 class BluetoothDeviceMac : public BluetoothDevice { | 21 class BluetoothDeviceMac : public BluetoothDevice { |
| 22 public: | 22 public: |
| 23 explicit BluetoothDeviceMac(IOBluetoothDevice* device); | 23 explicit BluetoothDeviceMac(IOBluetoothDevice* device); |
| 24 virtual ~BluetoothDeviceMac(); | 24 virtual ~BluetoothDeviceMac(); |
| 25 | 25 |
| 26 // BluetoothDevice override | 26 // BluetoothDevice override |
| 27 virtual void AddObserver( | |
| 28 device::BluetoothDevice::Observer* observer) OVERRIDE; | |
| 29 virtual void RemoveObserver( | |
| 30 device::BluetoothDevice::Observer* observer) OVERRIDE; | |
| 31 virtual uint32 GetBluetoothClass() const OVERRIDE; | 27 virtual uint32 GetBluetoothClass() const OVERRIDE; |
| 32 virtual std::string GetAddress() const OVERRIDE; | 28 virtual std::string GetAddress() const OVERRIDE; |
| 33 virtual VendorIDSource GetVendorIDSource() const OVERRIDE; | 29 virtual VendorIDSource GetVendorIDSource() const OVERRIDE; |
| 34 virtual uint16 GetVendorID() const OVERRIDE; | 30 virtual uint16 GetVendorID() const OVERRIDE; |
| 35 virtual uint16 GetProductID() const OVERRIDE; | 31 virtual uint16 GetProductID() const OVERRIDE; |
| 36 virtual uint16 GetDeviceID() const OVERRIDE; | 32 virtual uint16 GetDeviceID() const OVERRIDE; |
| 37 virtual int GetRSSI() const OVERRIDE; | 33 virtual int GetRSSI() const OVERRIDE; |
| 38 virtual int GetCurrentHostTransmitPower() const OVERRIDE; | 34 virtual int GetCurrentHostTransmitPower() const OVERRIDE; |
| 39 virtual int GetMaximumHostTransmitPower() const OVERRIDE; | 35 virtual int GetMaximumHostTransmitPower() const OVERRIDE; |
| 40 virtual bool IsPaired() const OVERRIDE; | 36 virtual bool IsPaired() const OVERRIDE; |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 virtual std::string GetDeviceName() const OVERRIDE; | 78 virtual std::string GetDeviceName() const OVERRIDE; |
| 83 | 79 |
| 84 private: | 80 private: |
| 85 friend class BluetoothAdapterMac; | 81 friend class BluetoothAdapterMac; |
| 86 | 82 |
| 87 // Implementation to read the host's transmit power level of type | 83 // Implementation to read the host's transmit power level of type |
| 88 // |power_level_type|. | 84 // |power_level_type|. |
| 89 int GetHostTransmitPower( | 85 int GetHostTransmitPower( |
| 90 BluetoothHCITransmitPowerLevelType power_level_type) const; | 86 BluetoothHCITransmitPowerLevelType power_level_type) const; |
| 91 | 87 |
| 92 // List of observers interested in event notifications from us. | |
| 93 ObserverList<Observer> observers_; | |
| 94 | |
| 95 base::scoped_nsobject<IOBluetoothDevice> device_; | 88 base::scoped_nsobject<IOBluetoothDevice> device_; |
| 96 | 89 |
| 97 DISALLOW_COPY_AND_ASSIGN(BluetoothDeviceMac); | 90 DISALLOW_COPY_AND_ASSIGN(BluetoothDeviceMac); |
| 98 }; | 91 }; |
| 99 | 92 |
| 100 } // namespace device | 93 } // namespace device |
| 101 | 94 |
| 102 #endif // DEVICE_BLUETOOTH_BLUETOOTH_DEVICE_MAC_H_ | 95 #endif // DEVICE_BLUETOOTH_BLUETOOTH_DEVICE_MAC_H_ |
| OLD | NEW |