Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(271)

Side by Side Diff: media/audio/audio_manager_base.h

Issue 9691001: Audio software mixer. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef MEDIA_AUDIO_AUDIO_MANAGER_BASE_H_ 5 #ifndef MEDIA_AUDIO_AUDIO_MANAGER_BASE_H_
6 #define MEDIA_AUDIO_AUDIO_MANAGER_BASE_H_ 6 #define MEDIA_AUDIO_AUDIO_MANAGER_BASE_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string>
vrk (LEFT CHROMIUM) 2012/04/06 23:37:05 You still need to remove this include.
enal1 2012/04/16 22:01:35 Line 50: virtual AudioInputStream* MakeAudioInp
9 10
10 #include "base/atomic_ref_count.h" 11 #include "base/atomic_ref_count.h"
11 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
12 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
13 #include "base/synchronization/lock.h" 14 #include "base/synchronization/lock.h"
14 #include "media/audio/audio_manager.h" 15 #include "media/audio/audio_manager.h"
15 16
16 class AudioOutputDispatcher; 17 class AudioOutputDispatcher;
17 18
18 namespace base { 19 namespace base {
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 // Number of currently open output streams. 119 // Number of currently open output streams.
119 int num_output_streams_; 120 int num_output_streams_;
120 121
121 // Number of currently open input streams. 122 // Number of currently open input streams.
122 int num_input_streams_; 123 int num_input_streams_;
123 124
124 DISALLOW_COPY_AND_ASSIGN(AudioManagerBase); 125 DISALLOW_COPY_AND_ASSIGN(AudioManagerBase);
125 }; 126 };
126 127
127 #endif // MEDIA_AUDIO_AUDIO_MANAGER_BASE_H_ 128 #endif // MEDIA_AUDIO_AUDIO_MANAGER_BASE_H_
OLDNEW
« no previous file with comments | « no previous file | media/audio/audio_manager_base.cc » ('j') | media/audio/audio_output_dispatcher.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698