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_H_ | 5 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_DEVICE_H_ |
6 #define DEVICE_BLUETOOTH_BLUETOOTH_DEVICE_H_ | 6 #define DEVICE_BLUETOOTH_BLUETOOTH_DEVICE_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/callback.h" | 12 #include "base/callback.h" |
13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
14 #include "base/memory/scoped_vector.h" | 14 #include "base/memory/scoped_vector.h" |
15 #include "base/strings/string16.h" | 15 #include "base/strings/string16.h" |
| 16 #include "device/bluetooth/bluetooth_export.h" |
16 #include "device/bluetooth/bluetooth_uuid.h" | 17 #include "device/bluetooth/bluetooth_uuid.h" |
17 #include "net/base/net_log.h" | 18 #include "net/base/net_log.h" |
18 | 19 |
19 namespace device { | 20 namespace device { |
20 | 21 |
21 class BluetoothGattConnection; | 22 class BluetoothGattConnection; |
22 class BluetoothGattService; | 23 class BluetoothGattService; |
23 class BluetoothSocket; | 24 class BluetoothSocket; |
24 class BluetoothUUID; | 25 class BluetoothUUID; |
25 | 26 |
26 // BluetoothDevice represents a remote Bluetooth device, both its properties and | 27 // BluetoothDevice represents a remote Bluetooth device, both its properties and |
27 // capabilities as discovered by a local adapter and actions that may be | 28 // capabilities as discovered by a local adapter and actions that may be |
28 // performed on the remove device such as pairing, connection and disconnection. | 29 // performed on the remove device such as pairing, connection and disconnection. |
29 // | 30 // |
30 // The class is instantiated and managed by the BluetoothAdapter class | 31 // The class is instantiated and managed by the BluetoothAdapter class |
31 // and pointers should only be obtained from that class and not cached, | 32 // and pointers should only be obtained from that class and not cached, |
32 // instead use the GetAddress() method as a unique key for a device. | 33 // instead use the GetAddress() method as a unique key for a device. |
33 // | 34 // |
34 // Since the lifecycle of BluetoothDevice instances is managed by | 35 // Since the lifecycle of BluetoothDevice instances is managed by |
35 // BluetoothAdapter, that class rather than this provides observer methods | 36 // BluetoothAdapter, that class rather than this provides observer methods |
36 // for devices coming and going, as well as properties being updated. | 37 // for devices coming and going, as well as properties being updated. |
37 class BluetoothDevice { | 38 class DEVICE_BLUETOOTH_EXPORT BluetoothDevice { |
38 public: | 39 public: |
39 // Possible values that may be returned by GetVendorIDSource(), | 40 // Possible values that may be returned by GetVendorIDSource(), |
40 // indicating different organisations that allocate the identifiers returned | 41 // indicating different organisations that allocate the identifiers returned |
41 // by GetVendorID(). | 42 // by GetVendorID(). |
42 enum VendorIDSource { | 43 enum VendorIDSource { |
43 VENDOR_ID_UNKNOWN, | 44 VENDOR_ID_UNKNOWN, |
44 VENDOR_ID_BLUETOOTH, | 45 VENDOR_ID_BLUETOOTH, |
45 VENDOR_ID_USB | 46 VENDOR_ID_USB |
46 }; | 47 }; |
47 | 48 |
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 | 417 |
417 private: | 418 private: |
418 // Returns a localized string containing the device's bluetooth address and | 419 // Returns a localized string containing the device's bluetooth address and |
419 // a device type for display when |name_| is empty. | 420 // a device type for display when |name_| is empty. |
420 base::string16 GetAddressWithLocalizedDeviceTypeName() const; | 421 base::string16 GetAddressWithLocalizedDeviceTypeName() const; |
421 }; | 422 }; |
422 | 423 |
423 } // namespace device | 424 } // namespace device |
424 | 425 |
425 #endif // DEVICE_BLUETOOTH_BLUETOOTH_DEVICE_H_ | 426 #endif // DEVICE_BLUETOOTH_BLUETOOTH_DEVICE_H_ |
OLD | NEW |