blob: f907e4da7324d4adb5c7338e151f9618ad8c6113 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef DEVICE_BLUETOOTH_DBUS_FAKE_BLUETOOTH_MEDIA_ENDPOINT_SERVICE_PROVIDER_H_
#define DEVICE_BLUETOOTH_DBUS_FAKE_BLUETOOTH_MEDIA_ENDPOINT_SERVICE_PROVIDER_H_
#include <stdint.h>
#include <vector>
#include "base/logging.h"
#include "base/macros.h"
#include "dbus/object_path.h"
#include "device/bluetooth/bluetooth_export.h"
#include "device/bluetooth/dbus/bluetooth_media_endpoint_service_provider.h"
#include "testing/gtest/include/gtest/gtest_prod.h" // nogncheck
namespace bluez {
// FakeBluetoothMediaEndpointServiceProvider simulates the behavior of a local
// Bluetooth Media Endpoint object.
class DEVICE_BLUETOOTH_EXPORT FakeBluetoothMediaEndpointServiceProvider
: public BluetoothMediaEndpointServiceProvider {
public:
FakeBluetoothMediaEndpointServiceProvider(const dbus::ObjectPath& object_path,
Delegate* delegate);
~FakeBluetoothMediaEndpointServiceProvider() override;
// Each of these calls the equivalent BluetoothMediaEnpointServiceProvider::
// Delegate method on the object passed on construction.
void SetConfiguration(const dbus::ObjectPath& transport_path,
const Delegate::TransportProperties& properties);
void SelectConfiguration(
const std::vector<uint8_t>& capabilities,
const Delegate::SelectConfigurationCallback& callback);
void ClearConfiguration(const dbus::ObjectPath& transport_path);
void Released();
// Gets the path of the media endpoint object.
const dbus::ObjectPath& object_path() const { return object_path_; }
private:
// The path of the media endpoint object.
dbus::ObjectPath object_path_;
// All incoming method calls are passed to |delegate_|. |callback| passed to
// |delegate_| will generate the response for those methods which have
// non-void return.
Delegate* delegate_;
DISALLOW_COPY_AND_ASSIGN(FakeBluetoothMediaEndpointServiceProvider);
};
} // namespace bluez
#endif // DEVICE_BLUETOOTH_DBUS_FAKE_BLUETOOTH_MEDIA_ENDPOINT_SERVICE_PROVIDER_H_