// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_GATT_SERVICE_BLUEZ_H_ #define DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_GATT_SERVICE_BLUEZ_H_ #include <string> #include "base/memory/raw_ptr.h" #include "dbus/object_path.h" #include "device/bluetooth/bluetooth_gatt_service.h" namespace bluez { class BluetoothAdapterBlueZ; class BluetoothDeviceBlueZ; // The BluetoothGattServiceBlueZ class implements BluetootGattService // for GATT services on platforms that use BlueZ. class BluetoothGattServiceBlueZ : public virtual device::BluetoothGattService { … }; } // namespace bluez #endif // DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_GATT_SERVICE_BLUEZ_H_