| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_OUTPUT_H_ | 5 #ifndef MEDIA_AUDIO_AUDIO_OUTPUT_H_ |
| 6 #define MEDIA_AUDIO_AUDIO_OUTPUT_H_ | 6 #define MEDIA_AUDIO_AUDIO_OUTPUT_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 | 9 |
| 10 // Low-level audio output support. To make sound there are 3 objects involved: | 10 // Low-level audio output support. To make sound there are 3 objects involved: |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 // Get AudioManager singleton. | 153 // Get AudioManager singleton. |
| 154 // TODO(cpu): Define threading requirements for interacting with AudioManager. | 154 // TODO(cpu): Define threading requirements for interacting with AudioManager. |
| 155 static AudioManager* GetAudioManager(); | 155 static AudioManager* GetAudioManager(); |
| 156 | 156 |
| 157 protected: | 157 protected: |
| 158 virtual ~AudioManager() {} | 158 virtual ~AudioManager() {} |
| 159 }; | 159 }; |
| 160 | 160 |
| 161 | 161 |
| 162 #endif // MEDIA_AUDIO_AUDIO_OUTPUT_H_ | 162 #endif // MEDIA_AUDIO_AUDIO_OUTPUT_H_ |
| 163 | |
| OLD | NEW |