| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CONTENT_RENDERER_MEDIA_MEDIA_STREAM_AUDIO_PROCESSOR_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_MEDIA_STREAM_AUDIO_PROCESSOR_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_AUDIO_PROCESSOR_H_ | 6 #define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_AUDIO_PROCESSOR_H_ |
| 7 | 7 |
| 8 #include "base/atomicops.h" | 8 #include "base/atomicops.h" |
| 9 #include "base/files/file.h" | 9 #include "base/files/file.h" |
| 10 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 #define ENABLE_AUDIO_REPETITION_DETECTOR 0 | 32 #define ENABLE_AUDIO_REPETITION_DETECTOR 0 |
| 33 #endif | 33 #endif |
| 34 #endif | 34 #endif |
| 35 | 35 |
| 36 namespace blink { | 36 namespace blink { |
| 37 class WebMediaConstraints; | 37 class WebMediaConstraints; |
| 38 } | 38 } |
| 39 | 39 |
| 40 namespace media { | 40 namespace media { |
| 41 class AudioBus; | 41 class AudioBus; |
| 42 class AudioFifo; | |
| 43 class AudioParameters; | 42 class AudioParameters; |
| 44 } // namespace media | 43 } // namespace media |
| 45 | 44 |
| 46 namespace webrtc { | 45 namespace webrtc { |
| 47 class TypingDetection; | 46 class TypingDetection; |
| 48 } | 47 } |
| 49 | 48 |
| 50 namespace content { | 49 namespace content { |
| 51 | 50 |
| 52 class EchoInformation; | 51 class EchoInformation; |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 // Object for logging UMA stats for echo information when the AEC is enabled. | 238 // Object for logging UMA stats for echo information when the AEC is enabled. |
| 240 // Accessed on the main render thread. | 239 // Accessed on the main render thread. |
| 241 std::unique_ptr<EchoInformation> echo_information_; | 240 std::unique_ptr<EchoInformation> echo_information_; |
| 242 | 241 |
| 243 DISALLOW_COPY_AND_ASSIGN(MediaStreamAudioProcessor); | 242 DISALLOW_COPY_AND_ASSIGN(MediaStreamAudioProcessor); |
| 244 }; | 243 }; |
| 245 | 244 |
| 246 } // namespace content | 245 } // namespace content |
| 247 | 246 |
| 248 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_AUDIO_PROCESSOR_H_ | 247 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_AUDIO_PROCESSOR_H_ |
| OLD | NEW |