| OLD | NEW |
| 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_FAKE_AUDIO_OUTPUT_STREAM_H_ | 5 #ifndef MEDIA_AUDIO_FAKE_AUDIO_OUTPUT_STREAM_H_ |
| 6 #define MEDIA_AUDIO_FAKE_AUDIO_OUTOUT_STREAM_H_ | 6 #define MEDIA_AUDIO_FAKE_AUDIO_OUTPUT_STREAM_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "media/audio/audio_io.h" | 9 #include "media/audio/audio_io.h" |
| 10 #include "media/audio/audio_parameters.h" | 10 #include "media/audio/audio_parameters.h" |
| 11 #include "media/audio/fake_audio_consumer.h" | 11 #include "media/audio/fake_audio_consumer.h" |
| 12 | 12 |
| 13 namespace media { | 13 namespace media { |
| 14 | 14 |
| 15 class AudioManagerBase; | 15 class AudioManagerBase; |
| 16 | 16 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 41 AudioManagerBase* audio_manager_; | 41 AudioManagerBase* audio_manager_; |
| 42 AudioSourceCallback* callback_; | 42 AudioSourceCallback* callback_; |
| 43 FakeAudioConsumer fake_consumer_; | 43 FakeAudioConsumer fake_consumer_; |
| 44 | 44 |
| 45 DISALLOW_COPY_AND_ASSIGN(FakeAudioOutputStream); | 45 DISALLOW_COPY_AND_ASSIGN(FakeAudioOutputStream); |
| 46 }; | 46 }; |
| 47 | 47 |
| 48 } // namespace media | 48 } // namespace media |
| 49 | 49 |
| 50 #endif // MEDIA_AUDIO_FAKE_AUDIO_OUTPUT_STREAM_H_ | 50 #endif // MEDIA_AUDIO_FAKE_AUDIO_OUTPUT_STREAM_H_ |
| OLD | NEW |