Linux: Depend on liberation-fonts package for RPMs.
[chromium-blink-merge.git] / device / bluetooth / bluetooth_gatt_connection_chromeos.h
blob2727a2354b87abc4063bbfd23f889e1d4ed79627
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
3 // found in the LICENSE file.
5 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_GATT_CONNECTION_CHROMEOS_H_
6 #define DEVICE_BLUETOOTH_BLUETOOTH_GATT_CONNECTION_CHROMEOS_H_
8 #include <string>
10 #include "base/callback.h"
11 #include "base/memory/weak_ptr.h"
12 #include "chromeos/dbus/bluetooth_device_client.h"
13 #include "dbus/object_path.h"
14 #include "device/bluetooth/bluetooth_gatt_connection.h"
16 namespace device {
18 class BluetoothAdapter;
20 } // namespace device
22 namespace chromeos {
24 // BluetoothGattConnectionChromeOS implements BluetoothGattConnection for the
25 // Chrome OS platform.
26 class BluetoothGattConnectionChromeOS
27 : public device::BluetoothGattConnection,
28 public BluetoothDeviceClient::Observer {
29 public:
30 explicit BluetoothGattConnectionChromeOS(
31 scoped_refptr<device::BluetoothAdapter> adapter,
32 const std::string& device_address,
33 const dbus::ObjectPath& object_path);
34 ~BluetoothGattConnectionChromeOS() override;
36 // BluetoothGattConnection overrides.
37 bool IsConnected() override;
38 void Disconnect() override;
40 private:
42 // chromeos::BluetoothDeviceClient::Observer overrides.
43 void DeviceRemoved(const dbus::ObjectPath& object_path) override;
44 void DevicePropertyChanged(const dbus::ObjectPath& object_path,
45 const std::string& property_name) override;
47 // True, if the connection is currently active.
48 bool connected_;
50 // D-Bus object path of the underlying device. This is used to filter observer
51 // events.
52 dbus::ObjectPath object_path_;
54 DISALLOW_COPY_AND_ASSIGN(BluetoothGattConnectionChromeOS);
57 } // namespace chromeos
59 #endif // DEVICE_BLUETOOTH_BLUETOOTH_GATT_CONNECTION_CHROMEOS_H_