forked from sanyaade-mobiledev/chromium.src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfake_audio_log_factory.cc
31 lines (25 loc) · 1.05 KB
/
fake_audio_log_factory.cc
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
// Copyright 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 "media/audio/fake_audio_log_factory.h"
namespace media {
class FakeAudioLogImpl : public AudioLog {
public:
FakeAudioLogImpl() {}
virtual ~FakeAudioLogImpl() {}
virtual void OnCreated(int component_id,
const media::AudioParameters& params,
const std::string& device_id) OVERRIDE {}
virtual void OnStarted(int component_id) OVERRIDE {}
virtual void OnStopped(int component_id) OVERRIDE {}
virtual void OnClosed(int component_id) OVERRIDE {}
virtual void OnError(int component_id) OVERRIDE {}
virtual void OnSetVolume(int component_id, double volume) OVERRIDE {}
};
FakeAudioLogFactory::FakeAudioLogFactory() {}
FakeAudioLogFactory::~FakeAudioLogFactory() {}
scoped_ptr<AudioLog> FakeAudioLogFactory::CreateAudioLog(
AudioComponent component) {
return scoped_ptr<AudioLog>(new FakeAudioLogImpl());
}
} // namespace media