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

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

Issue 2244693002: bluetooth: Refactor how we update based on Advertising Data (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix arc Created 4 years, 4 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 24 matching lines...) Expand all
35 uint16_t GetVendorID() const override; 35 uint16_t GetVendorID() const override;
36 uint16_t GetProductID() const override; 36 uint16_t GetProductID() const override;
37 uint16_t GetDeviceID() const override; 37 uint16_t GetDeviceID() const override;
38 uint16_t GetAppearance() const override; 38 uint16_t GetAppearance() const override;
39 base::Optional<std::string> GetName() const override; 39 base::Optional<std::string> GetName() const override;
40 bool IsPaired() const override; 40 bool IsPaired() const override;
41 bool IsConnected() const override; 41 bool IsConnected() const override;
42 bool IsGattConnected() const override; 42 bool IsGattConnected() const override;
43 bool IsConnectable() const override; 43 bool IsConnectable() const override;
44 bool IsConnecting() const override; 44 bool IsConnecting() const override;
45 UUIDList GetUUIDs() const override; 45 UUIDSet GetUUIDs() const override;
46 base::Optional<int8_t> GetInquiryRSSI() const override; 46 base::Optional<int8_t> GetInquiryRSSI() const override;
47 base::Optional<int8_t> GetInquiryTxPower() const override; 47 base::Optional<int8_t> GetInquiryTxPower() const override;
48 bool ExpectingPinCode() const override; 48 bool ExpectingPinCode() const override;
49 bool ExpectingPasskey() const override; 49 bool ExpectingPasskey() const override;
50 bool ExpectingConfirmation() const override; 50 bool ExpectingConfirmation() const override;
51 void GetConnectionInfo(const ConnectionInfoCallback& callback) override; 51 void GetConnectionInfo(const ConnectionInfoCallback& callback) override;
52 void Connect(PairingDelegate* pairing_delegate, 52 void Connect(PairingDelegate* pairing_delegate,
53 const base::Closure& callback, 53 const base::Closure& callback,
54 const ConnectErrorCallback& error_callback) override; 54 const ConnectErrorCallback& error_callback) override;
55 void SetPinCode(const std::string& pincode) override; 55 void SetPinCode(const std::string& pincode) override;
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
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