blob: 0e21680e54b387389365e986062f286b68f6ac2b (
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
|
// Copyright (c) 2013 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.
#include "extensions/browser/api/audio/audio_service.h"
namespace extensions {
class AudioServiceImpl : public AudioService {
public:
AudioServiceImpl() {}
~AudioServiceImpl() override {}
// Called by listeners to this service to add/remove themselves as observers.
void AddObserver(Observer* observer) override;
void RemoveObserver(Observer* observer) override;
// Start to query audio device information.
void StartGetInfo(const GetInfoCallback& callback) override;
void SetActiveDevices(const DeviceIdList& device_list) override;
bool SetDeviceProperties(const std::string& device_id,
bool muted,
int volume,
int gain) override;
};
void AudioServiceImpl::AddObserver(Observer* observer) {
// TODO: implement this for platforms other than Chrome OS.
}
void AudioServiceImpl::RemoveObserver(Observer* observer) {
// TODO: implement this for platforms other than Chrome OS.
}
AudioService* AudioService::CreateInstance() {
return new AudioServiceImpl;
}
void AudioServiceImpl::StartGetInfo(const GetInfoCallback& callback) {
// TODO: implement this for platforms other than Chrome OS.
if (!callback.is_null())
callback.Run(OutputInfo(), InputInfo(), false);
}
void AudioServiceImpl::SetActiveDevices(const DeviceIdList& device_list) {
}
bool AudioServiceImpl::SetDeviceProperties(const std::string& device_id,
bool muted,
int volume,
int gain) {
return false;
}
} // namespace extensions
|