audio_manager.cc revision 5821806d5e7f356e8fa4b058a389a808ea183019
1// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "media/audio/audio_manager.h"
6
7#include "base/at_exit.h"
8#include "base/bind.h"
9#include "base/bind_helpers.h"
10#include "base/logging.h"
11#include "base/message_loop.h"
12
13namespace media {
14
15// Forward declaration of the platform specific AudioManager factory function.
16AudioManager* CreateAudioManager();
17
18AudioManager::AudioManager() {
19}
20
21AudioManager::~AudioManager() {
22}
23
24// static
25AudioManager* AudioManager::Create() {
26  return CreateAudioManager();
27}
28
29}  // namespace media
30