OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_GATT_CONNECTION_CHROMEOS_H_ | 5 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_GATT_CONNECTION_BLUEZ_H_ |
6 #define DEVICE_BLUETOOTH_BLUETOOTH_GATT_CONNECTION_CHROMEOS_H_ | 6 #define DEVICE_BLUETOOTH_BLUETOOTH_GATT_CONNECTION_BLUEZ_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "base/macros.h" | |
11 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
12 #include "dbus/object_path.h" | 13 #include "dbus/object_path.h" |
13 #include "device/bluetooth/bluetooth_gatt_connection.h" | 14 #include "device/bluetooth/bluetooth_gatt_connection.h" |
14 #include "device/bluetooth/dbus/bluetooth_device_client.h" | 15 #include "device/bluetooth/dbus/bluetooth_device_client.h" |
15 | 16 |
16 namespace device { | 17 namespace device { |
17 | 18 |
18 class BluetoothAdapter; | 19 class BluetoothAdapter; |
19 | 20 |
20 } // namespace device | 21 } // namespace device |
21 | 22 |
22 namespace chromeos { | 23 namespace bluez { |
23 | 24 |
24 // BluetoothGattConnectionChromeOS implements BluetoothGattConnection for the | 25 // BluetoothGattConnectionBlueZ implements BluetoothGattConnection for the |
25 // Chrome OS platform. | 26 // Chrome OS platform. |
ortuno
2015/11/06 18:15:42
Leftover "Chrome OS" reference.
rkc
2015/11/25 00:48:16
Done.
| |
26 class BluetoothGattConnectionChromeOS | 27 class BluetoothGattConnectionBlueZ |
27 : public device::BluetoothGattConnection, | 28 : public device::BluetoothGattConnection, |
28 public bluez::BluetoothDeviceClient::Observer { | 29 public bluez::BluetoothDeviceClient::Observer { |
29 public: | 30 public: |
30 explicit BluetoothGattConnectionChromeOS( | 31 explicit BluetoothGattConnectionBlueZ( |
31 scoped_refptr<device::BluetoothAdapter> adapter, | 32 scoped_refptr<device::BluetoothAdapter> adapter, |
32 const std::string& device_address, | 33 const std::string& device_address, |
33 const dbus::ObjectPath& object_path); | 34 const dbus::ObjectPath& object_path); |
34 ~BluetoothGattConnectionChromeOS() override; | 35 ~BluetoothGattConnectionBlueZ() override; |
35 | 36 |
36 // BluetoothGattConnection overrides. | 37 // BluetoothGattConnection overrides. |
37 bool IsConnected() override; | 38 bool IsConnected() override; |
38 void Disconnect() override; | 39 void Disconnect() override; |
39 | 40 |
40 private: | 41 private: |
41 // bluez::Bluetooth$1Client::Observer overrides. | 42 // bluez::Bluetooth$1Client::Observer overrides. |
42 void DeviceRemoved(const dbus::ObjectPath& object_path) override; | 43 void DeviceRemoved(const dbus::ObjectPath& object_path) override; |
43 void DevicePropertyChanged(const dbus::ObjectPath& object_path, | 44 void DevicePropertyChanged(const dbus::ObjectPath& object_path, |
44 const std::string& property_name) override; | 45 const std::string& property_name) override; |
45 | 46 |
46 // True, if the connection is currently active. | 47 // True, if the connection is currently active. |
47 bool connected_; | 48 bool connected_; |
48 | 49 |
49 // D-Bus object path of the underlying device. This is used to filter observer | 50 // D-Bus object path of the underlying device. This is used to filter observer |
50 // events. | 51 // events. |
51 dbus::ObjectPath object_path_; | 52 dbus::ObjectPath object_path_; |
52 | 53 |
53 DISALLOW_COPY_AND_ASSIGN(BluetoothGattConnectionChromeOS); | 54 DISALLOW_COPY_AND_ASSIGN(BluetoothGattConnectionBlueZ); |
54 }; | 55 }; |
55 | 56 |
56 } // namespace chromeos | 57 } // namespace bluez |
57 | 58 |
58 #endif // DEVICE_BLUETOOTH_BLUETOOTH_GATT_CONNECTION_CHROMEOS_H_ | 59 #endif // DEVICE_BLUETOOTH_BLUETOOTH_GATT_CONNECTION_BLUEZ_H_ |
OLD | NEW |