| 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..46a8055571f351156fcdaff8a005ad8eaade9bc9
|
| --- /dev/null
|
| +++ b/media/audio/mock_audio_manager.cc
|
| @@ -0,0 +1,79 @@
|
| +// 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"
|
| +
|
| +#include "base/logging.h"
|
| +#include "base/message_loop_proxy.h"
|
| +
|
| +namespace media {
|
| +
|
| +MockAudioManager::MockAudioManager(
|
| + scoped_refptr<base::MessageLoopProxy> message_loop_proxy)
|
| + : message_loop_proxy_(message_loop_proxy) {
|
| +}
|
| +
|
| +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 message_loop_proxy_;
|
| +}
|
| +
|
| +void MockAudioManager::Init() {
|
| +}
|
| +
|
| +} // namespace media.
|
|
|