| Index: media/audio/mock_audio_manager.cc
|
| diff --git a/media/audio/mock_audio_manager.cc b/media/audio/mock_audio_manager.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..daab2aa0f14f32e97dd92714309adcb477c00f6a
|
| --- /dev/null
|
| +++ b/media/audio/mock_audio_manager.cc
|
| @@ -0,0 +1,75 @@
|
| +// Copyright (c) 2012 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/mock_audio_manager.h"
|
| +
|
| +namespace media {
|
| +
|
| +MockAudioManager::MockAudioManager(content::BrowserThread::ID thread_id)
|
| + : thread_id_(thread_id) {
|
| +}
|
| +
|
| +MockAudioManager::~MockAudioManager() {
|
| +}
|
| +
|
| +bool MockAudioManager::HasAudioOutputDevices() {
|
| + return true;
|
| +}
|
| +
|
| +bool MockAudioManager::HasAudioInputDevices() {
|
| + return true;
|
| +}
|
| +
|
| +string16 MockAudioManager::GetAudioInputDeviceModel() {
|
| + return string16();
|
| +}
|
| +
|
| +bool MockAudioManager::CanShowAudioInputSettings() {
|
| + return false;
|
| +}
|
| +
|
| +void MockAudioManager::ShowAudioInputSettings() {
|
| +}
|
| +
|
| +void MockAudioManager::GetAudioInputDeviceNames(
|
| + media::AudioDeviceNames* device_names) {
|
| +}
|
| +
|
| +media::AudioOutputStream* MockAudioManager::MakeAudioOutputStream(
|
| + const media::AudioParameters& params) {
|
| + NOTREACHED();
|
| + return NULL;
|
| +}
|
| +
|
| +media::AudioOutputStream* MockAudioManager::MakeAudioOutputStreamProxy(
|
| + const media::AudioParameters& params) {
|
| + NOTREACHED();
|
| + return NULL;
|
| +}
|
| +
|
| +media::AudioInputStream* MockAudioManager::MakeAudioInputStream(
|
| + const media::AudioParameters& params,
|
| + const std::string& device_id) {
|
| + NOTREACHED();
|
| + return NULL;
|
| +}
|
| +
|
| +void MockAudioManager::MuteAll() {
|
| +}
|
| +
|
| +void MockAudioManager::UnMuteAll() {
|
| +}
|
| +
|
| +bool MockAudioManager::IsRecordingInProcess() {
|
| + return false;
|
| +}
|
| +
|
| +scoped_refptr<base::MessageLoopProxy> MockAudioManager::GetMessageLoop() {
|
| + return content::BrowserThread::GetMessageLoopProxyForThread(thread_id_);
|
| +}
|
| +
|
| +void MockAudioManager::Init() {
|
| +};
|
| +
|
| +} // namespace media.
|
|
|