diff --git a/modules/async_audio_processing/async_audio_processing.h b/modules/async_audio_processing/async_audio_processing.h index 7e09d69f15..bbd0f69b1b 100644 --- a/modules/async_audio_processing/async_audio_processing.h +++ b/modules/async_audio_processing/async_audio_processing.h @@ -53,16 +53,16 @@ class AsyncAudioProcessing final { ~AsyncAudioProcessing(); // Creates AsyncAudioProcessing which will pass audio frames to - // |frame_processor| on |task_queue_| and reply with processed frames passed - // into |on_frame_processed_callback|, which is posted back onto - // |task_queue_|. |task_queue_| is created using the provided - // |task_queue_factory|. + // `frame_processor` on `task_queue_` and reply with processed frames passed + // into `on_frame_processed_callback`, which is posted back onto + // `task_queue_`. `task_queue_` is created using the provided + // `task_queue_factory`. AsyncAudioProcessing( AudioFrameProcessor& frame_processor, TaskQueueFactory& task_queue_factory, AudioFrameProcessor::OnAudioFrameCallback on_frame_processed_callback); - // Accepts |frame| for asynchronous processing. Thread-safe. + // Accepts `frame` for asynchronous processing. Thread-safe. void Process(std::unique_ptr frame); private: