| 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_MANAGER_WIN_H_ | 5 #ifndef MEDIA_AUDIO_AUDIO_MANAGER_WIN_H_ |
| 6 #define MEDIA_AUDIO_AUDIO_MANAGER_WIN_H_ | 6 #define MEDIA_AUDIO_AUDIO_MANAGER_WIN_H_ |
| 7 | 7 |
| 8 #include <windows.h> | 8 #include <windows.h> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 void ReleaseStream(PCMWaveOutAudioOutputStream* stream); | 33 void ReleaseStream(PCMWaveOutAudioOutputStream* stream); |
| 34 void ReleaseStream(AudioOutputStreamMockWin* stream); | 34 void ReleaseStream(AudioOutputStreamMockWin* stream); |
| 35 | 35 |
| 36 private: | 36 private: |
| 37 friend void DestroyAudioManagerWin(void *); | 37 friend void DestroyAudioManagerWin(void *); |
| 38 virtual ~AudioManagerWin(); | 38 virtual ~AudioManagerWin(); |
| 39 DISALLOW_COPY_AND_ASSIGN(AudioManagerWin); | 39 DISALLOW_COPY_AND_ASSIGN(AudioManagerWin); |
| 40 }; | 40 }; |
| 41 | 41 |
| 42 #endif // MEDIA_AUDIO_AUDIO_MANAGER_WIN_H_ | 42 #endif // MEDIA_AUDIO_AUDIO_MANAGER_WIN_H_ |
| 43 | |
| OLD | NEW |