OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_WIN_H_ | 5 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_DEVICE_WIN_H_ |
6 #define DEVICE_BLUETOOTH_BLUETOOTH_DEVICE_WIN_H_ | 6 #define DEVICE_BLUETOOTH_BLUETOOTH_DEVICE_WIN_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 22 matching lines...) Expand all Loading... |
33 virtual void AddObserver( | 33 virtual void AddObserver( |
34 device::BluetoothDevice::Observer* observer) OVERRIDE; | 34 device::BluetoothDevice::Observer* observer) OVERRIDE; |
35 virtual void RemoveObserver( | 35 virtual void RemoveObserver( |
36 device::BluetoothDevice::Observer* observer) OVERRIDE; | 36 device::BluetoothDevice::Observer* observer) OVERRIDE; |
37 virtual uint32 GetBluetoothClass() const OVERRIDE; | 37 virtual uint32 GetBluetoothClass() const OVERRIDE; |
38 virtual std::string GetAddress() const OVERRIDE; | 38 virtual std::string GetAddress() const OVERRIDE; |
39 virtual VendorIDSource GetVendorIDSource() const OVERRIDE; | 39 virtual VendorIDSource GetVendorIDSource() const OVERRIDE; |
40 virtual uint16 GetVendorID() const OVERRIDE; | 40 virtual uint16 GetVendorID() const OVERRIDE; |
41 virtual uint16 GetProductID() const OVERRIDE; | 41 virtual uint16 GetProductID() const OVERRIDE; |
42 virtual uint16 GetDeviceID() const OVERRIDE; | 42 virtual uint16 GetDeviceID() const OVERRIDE; |
| 43 virtual int GetRSSI() const OVERRIDE; |
43 virtual bool IsPaired() const OVERRIDE; | 44 virtual bool IsPaired() const OVERRIDE; |
44 virtual bool IsConnected() const OVERRIDE; | 45 virtual bool IsConnected() const OVERRIDE; |
45 virtual bool IsConnectable() const OVERRIDE; | 46 virtual bool IsConnectable() const OVERRIDE; |
46 virtual bool IsConnecting() const OVERRIDE; | 47 virtual bool IsConnecting() const OVERRIDE; |
47 virtual UUIDList GetUUIDs() const OVERRIDE; | 48 virtual UUIDList GetUUIDs() const OVERRIDE; |
48 virtual bool ExpectingPinCode() const OVERRIDE; | 49 virtual bool ExpectingPinCode() const OVERRIDE; |
49 virtual bool ExpectingPasskey() const OVERRIDE; | 50 virtual bool ExpectingPasskey() const OVERRIDE; |
50 virtual bool ExpectingConfirmation() const OVERRIDE; | 51 virtual bool ExpectingConfirmation() const OVERRIDE; |
51 virtual void Connect( | 52 virtual void Connect( |
52 PairingDelegate* pairing_delegate, | 53 PairingDelegate* pairing_delegate, |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 // The service records retrieved from SDP. | 123 // The service records retrieved from SDP. |
123 typedef ScopedVector<BluetoothServiceRecord> ServiceRecordList; | 124 typedef ScopedVector<BluetoothServiceRecord> ServiceRecordList; |
124 ServiceRecordList service_record_list_; | 125 ServiceRecordList service_record_list_; |
125 | 126 |
126 DISALLOW_COPY_AND_ASSIGN(BluetoothDeviceWin); | 127 DISALLOW_COPY_AND_ASSIGN(BluetoothDeviceWin); |
127 }; | 128 }; |
128 | 129 |
129 } // namespace device | 130 } // namespace device |
130 | 131 |
131 #endif // DEVICE_BLUETOOTH_BLUETOOTH_DEVICE_WIN_H_ | 132 #endif // DEVICE_BLUETOOTH_BLUETOOTH_DEVICE_WIN_H_ |
OLD | NEW |