Chromium Code Reviews| Index: webrtc/media/engine/webrtcvoiceengine.h |
| diff --git a/webrtc/media/engine/webrtcvoiceengine.h b/webrtc/media/engine/webrtcvoiceengine.h |
| index d8466a0b414ace78f52236757e7324fd6d0b80ca..bbfec880f884186b20af5d0a22377e115f4b6c47 100644 |
| --- a/webrtc/media/engine/webrtcvoiceengine.h |
| +++ b/webrtc/media/engine/webrtcvoiceengine.h |
| @@ -22,6 +22,7 @@ |
| #include "webrtc/base/constructormagic.h" |
| #include "webrtc/base/networkroute.h" |
| #include "webrtc/base/scoped_ref_ptr.h" |
| +#include "webrtc/base/task_queue.h" |
| #include "webrtc/base/thread_checker.h" |
| #include "webrtc/call/audio_state.h" |
| #include "webrtc/call/call.h" |
| @@ -110,6 +111,9 @@ class WebRtcVoiceEngine final : public webrtc::TraceCallback { |
| void StartAecDump(const std::string& filename); |
| int CreateVoEChannel(); |
| + |
| + rtc::TaskQueue low_priority_worker_queue_; |
|
the sun
2017/05/22 22:38:00
On some platforms this means we're adding yet anot
aleloi
2017/05/23 11:05:49
The file logging has to be done on *some* thread d
the sun
2017/05/23 20:47:29
Sorry about the confusion - that's not what I'm su
|
| + |
| webrtc::AudioDeviceModule* adm(); |
| webrtc::AudioProcessing* apm(); |
| webrtc::voe::TransmitMixer* transmit_mixer(); |