blob: c9649e65c910a0912e9527ae6dec2f9c0b299ce9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
// 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 CHROMEOS_DBUS_FAKE_BLUETOOTH_MEDIA_CLIENT_H_
#define CHROMEOS_DBUS_FAKE_BLUETOOTH_MEDIA_CLIENT_H_
#include <map>
#include "base/callback.h"
#include "base/observer_list.h"
#include "chromeos/chromeos_export.h"
#include "chromeos/dbus/bluetooth_media_client.h"
#include "dbus/object_path.h"
namespace chromeos {
class FakeBluetoothMediaEndpointServiceProvider;
class CHROMEOS_EXPORT FakeBluetoothMediaClient : public BluetoothMediaClient {
public:
// The default codec is SBC(0x00).
static const uint8_t kDefaultCodec;
FakeBluetoothMediaClient();
~FakeBluetoothMediaClient() override;
// DBusClient override.
void Init(dbus::Bus* bus) override;
// BluetoothMediaClient overrides.
void AddObserver(BluetoothMediaClient::Observer* observer) override;
void RemoveObserver(BluetoothMediaClient::Observer* observer) override;
void RegisterEndpoint(const dbus::ObjectPath& object_path,
const dbus::ObjectPath& endpoint_path,
const EndpointProperties& properties,
const base::Closure& callback,
const ErrorCallback& error_callback) override;
void UnregisterEndpoint(const dbus::ObjectPath& object_path,
const dbus::ObjectPath& endpoint_path,
const base::Closure& callback,
const ErrorCallback& error_callback) override;
// Makes the media object visible/invisible to emulate the addition/removal
// events.
void SetVisible(bool visible);
// Sets the registration state for a given media endpoint.
void SetEndpointRegistered(
FakeBluetoothMediaEndpointServiceProvider* endpoint,
bool registered);
// Indicates whether the given endpoint path is registered or not.
bool IsRegistered(const dbus::ObjectPath& endpoint_path);
private:
// Indicates whether the media object is visible or not.
bool visible_;
// The path of the media object.
dbus::ObjectPath object_path_;
// Map of registered endpoints. Each pair is composed of an endpoint path as
// key and a pointer to the endpoint as value.
std::map<dbus::ObjectPath, FakeBluetoothMediaEndpointServiceProvider*>
endpoints_;
// List of observers interested in event notifications from us.
ObserverList<BluetoothMediaClient::Observer> observers_;
DISALLOW_COPY_AND_ASSIGN(FakeBluetoothMediaClient);
};
} // namespace chromeos
#endif // CHROMEOS_DBUS_FAKE_BLUETOOTH_MEDIA_CLIENT_H_
|