blob: 611529a067ac0e0314b5ad1830a06322db27c3bd (
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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef MEDIAENGINEFAKE_H_
#define MEDIAENGINEFAKE_H_
#include "nsTArrayForwardDeclare.h"
#include "MediaEngine.h"
namespace mozilla {
template <typename...>
class MediaEventProducer;
/**
* The fake implementation of the MediaEngine interface.
*/
class MediaEngineFake : public MediaEngine {
public:
MediaEngineFake();
void EnumerateDevices(dom::MediaSourceEnum, MediaSinkEnum,
nsTArray<RefPtr<MediaDevice>>*) override;
void Shutdown() override {}
RefPtr<MediaEngineSource> CreateSource(const MediaDevice* aDevice) override;
MediaEventSource<void>& DeviceListChangeEvent() override {
return mDeviceListChangeEvent;
}
bool IsFake() const override { return true; }
private:
~MediaEngineFake();
MediaEventProducer<void> mDeviceListChangeEvent;
};
} // namespace mozilla
#endif /* NSMEDIAENGINEFAKE_H_ */
|