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

Side by Side Diff: device/bluetooth/bluetooth_classic_device_mac.h

Issue 1941923002: bluetooth: Return int8_t and use -128 for unknown tx power. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@my-origin
Patch Set: Fix extensions tests Created 4 years, 7 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
OLDNEW
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
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 base::Optional<int8_t> GetInquiryRSSI() const override;
45 int16_t GetInquiryTxPower() const override; 45 base::Optional<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 26 matching lines...) Expand all
82 // BluetoothDevice override 82 // BluetoothDevice override
83 std::string GetDeviceName() const override; 83 std::string GetDeviceName() const override;
84 void CreateGattConnectionImpl() override; 84 void CreateGattConnectionImpl() override;
85 void DisconnectGatt() override; 85 void DisconnectGatt() override;
86 86
87 private: 87 private:
88 friend class BluetoothAdapterMac; 88 friend class BluetoothAdapterMac;
89 89
90 // Implementation to read the host's transmit power level of type 90 // Implementation to read the host's transmit power level of type
91 // |power_level_type|. 91 // |power_level_type|.
92 int GetHostTransmitPower( 92 base::Optional<int8_t> GetHostTransmitPower(
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698