chromium/device/bluetooth/floss/floss_bluetooth_telephony_client.h

// Copyright 2023 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_FLOSS_FLOSS_BLUETOOTH_TELEPHONY_CLIENT_H_
#define DEVICE_BLUETOOTH_FLOSS_FLOSS_BLUETOOTH_TELEPHONY_CLIENT_H_

#include <memory>

#include "base/functional/callback.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "dbus/exported_object.h"
#include "dbus/object_path.h"
#include "device/bluetooth/bluetooth_export.h"
#include "device/bluetooth/floss/floss_dbus_client.h"

namespace floss {
// FlossBluetoothTelephonyClient is a D-Bus client that talks to Floss daemon to
// perform Telephony operations, such like enable phone ops, incoming call and
// answer call. It is managed by FlossClientBundle and will be initialized with
// an adapter.
class DEVICE_BLUETOOTH_EXPORT FlossBluetoothTelephonyClient
    : public FlossDBusClient {};

}  // namespace floss

#endif  // DEVICE_BLUETOOTH_FLOSS_FLOSS_BLUETOOTH_TELEPHONY_CLIENT_H_