| 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_CLASSIC_DEVICE_MAC_H_ | 5 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_CLASSIC_DEVICE_MAC_H_ |
| 6 #define DEVICE_BLUETOOTH_BLUETOOTH_CLASSIC_DEVICE_MAC_H_ | 6 #define DEVICE_BLUETOOTH_BLUETOOTH_CLASSIC_DEVICE_MAC_H_ |
| 7 | 7 |
| 8 #import <IOBluetooth/IOBluetooth.h> | 8 #import <IOBluetooth/IOBluetooth.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 uint16_t GetVendorID() const override; | 34 uint16_t GetVendorID() const override; |
| 35 uint16_t GetProductID() const override; | 35 uint16_t GetProductID() const override; |
| 36 uint16_t GetDeviceID() const override; | 36 uint16_t GetDeviceID() const override; |
| 37 uint16_t GetAppearance() const override; | 37 uint16_t GetAppearance() const override; |
| 38 bool IsPaired() const override; | 38 bool IsPaired() const override; |
| 39 bool IsConnected() const override; | 39 bool IsConnected() const override; |
| 40 bool IsGattConnected() const override; | 40 bool IsGattConnected() const override; |
| 41 bool IsConnectable() const override; | 41 bool IsConnectable() const override; |
| 42 bool IsConnecting() const override; | 42 bool IsConnecting() const override; |
| 43 UUIDList GetUUIDs() const override; | 43 UUIDList GetUUIDs() const override; |
| 44 int16_t GetInquiryRSSI() const override; | 44 int8_t GetInquiryRSSI() const override; |
| 45 int16_t GetInquiryTxPower() const override; | 45 int8_t GetInquiryTxPower() const override; |
| 46 bool ExpectingPinCode() const override; | 46 bool ExpectingPinCode() const override; |
| 47 bool ExpectingPasskey() const override; | 47 bool ExpectingPasskey() const override; |
| 48 bool ExpectingConfirmation() const override; | 48 bool ExpectingConfirmation() const override; |
| 49 void GetConnectionInfo(const ConnectionInfoCallback& callback) override; | 49 void GetConnectionInfo(const ConnectionInfoCallback& callback) override; |
| 50 void Connect(PairingDelegate* pairing_delegate, | 50 void Connect(PairingDelegate* pairing_delegate, |
| 51 const base::Closure& callback, | 51 const base::Closure& callback, |
| 52 const ConnectErrorCallback& error_callback) override; | 52 const ConnectErrorCallback& error_callback) override; |
| 53 void SetPinCode(const std::string& pincode) override; | 53 void SetPinCode(const std::string& pincode) override; |
| 54 void SetPasskey(uint32_t passkey) override; | 54 void SetPasskey(uint32_t passkey) override; |
| 55 void ConfirmPairing() override; | 55 void ConfirmPairing() override; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 BluetoothHCITransmitPowerLevelType power_level_type) const; | 93 BluetoothHCITransmitPowerLevelType power_level_type) const; |
| 94 | 94 |
| 95 base::scoped_nsobject<IOBluetoothDevice> device_; | 95 base::scoped_nsobject<IOBluetoothDevice> device_; |
| 96 | 96 |
| 97 DISALLOW_COPY_AND_ASSIGN(BluetoothClassicDeviceMac); | 97 DISALLOW_COPY_AND_ASSIGN(BluetoothClassicDeviceMac); |
| 98 }; | 98 }; |
| 99 | 99 |
| 100 } // namespace device | 100 } // namespace device |
| 101 | 101 |
| 102 #endif // DEVICE_BLUETOOTH_BLUETOOTH_CLASSIC_DEVICE_MAC_H_ | 102 #endif // DEVICE_BLUETOOTH_BLUETOOTH_CLASSIC_DEVICE_MAC_H_ |
| OLD | NEW |