Use TaskRunnerHelper with kUnthrottled task priority in AudioDestination |
|
Issue description
The current implementation uses a soon-to-be-deprecated task scheduler. Update this with a better priority descriptor.
``` Replace this
rendering_thread_->GetWebTaskRunner()->PostTask(
```
``` with this
TaskRunnerHelper::Get(TaskType::kUnthrottled, rendering_thread_)
->PostTask(
```
|
|
►
Sign in to add a comment |
|
Comment 1 by hongchan@chromium.org
, Jun 23 2017