forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmedia_controller.h
67 lines (50 loc) · 1.97 KB
/
media_controller.h
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
// Copyright 2016 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 ASH_MEDIA_CONTROLLER_H_
#define ASH_MEDIA_CONTROLLER_H_
#include "ash/public/interfaces/media.mojom.h"
#include "base/macros.h"
#include "base/observer_list.h"
#include "mojo/public/cpp/bindings/associated_binding.h"
#include "mojo/public/cpp/bindings/binding_set.h"
namespace ash {
// Forwards notifications from the MediaController to observers.
class MediaCaptureObserver {
public:
// Called when media capture state has changed.
virtual void OnMediaCaptureChanged(
const std::vector<mojom::MediaCaptureState>& capture_states) = 0;
protected:
virtual ~MediaCaptureObserver() {}
};
// Provides the MediaController interface to the outside world. This lets a
// consumer of ash provide a MediaClient, which we will dispatch to if one has
// been provided to us.
class MediaController : public mojom::MediaController {
public:
MediaController();
~MediaController() override;
void BindRequest(mojom::MediaControllerRequest request);
void AddObserver(MediaCaptureObserver* observer);
void RemoveObserver(MediaCaptureObserver* observer);
// mojom::MediaController:
void SetClient(mojom::MediaClientAssociatedPtrInfo client) override;
void NotifyCaptureState(
const std::vector<mojom::MediaCaptureState>& capture_states) override;
// Methods that forward to |client_|.
void HandleMediaNextTrack();
void HandleMediaPlayPause();
void HandleMediaPrevTrack();
void RequestCaptureState();
void SuspendMediaSessions();
private:
friend class MultiProfileMediaTrayItemTest;
// Bindings for users of the mojo interface.
mojo::BindingSet<mojom::MediaController> bindings_;
mojom::MediaClientAssociatedPtr client_;
base::ObserverList<MediaCaptureObserver>::Unchecked observers_;
DISALLOW_COPY_AND_ASSIGN(MediaController);
};
} // namespace ash
#endif // ASH_MEDIA_CONTROLLER_H_