Chromium Code Reviews
DescriptionUse TaskScheduler instead of WorkerPool in trace_log.cc.
The following traits are used to post a task to TaskScheduler:
.WithPriority(TaskPriority::BACKGROUND)
User won't notice if this task takes an arbitrarily long time to
complete.
.WithShutdownBehavior(TaskShutdownBehavior::CONTINUE_ON_SHUTDOWN)
Tasks posted with this mode which have not started executing before
shutdown is initiated will never run. Tasks with this mode running at
shutdown will be ignored (the worker will not be joined).
Note: Tasks that were previously posted to base::WorkerPool should
use this shutdown behavior because this is how base::WorkerPool
handles all its tasks.
.MayBlock()
Tasks with this trait may block. This includes but is not limited to
tasks that wait on synchronous file I/O operations: read or write a
file from disk, interact with a pipe or a socket, rename or delete a
file, enumerate files in a directory, etc. This trait isn't required
for the mere use of locks.
BUG=659191
Review-Url: https://codereview.chromium.org/2675273002
Cr-Commit-Position: refs/heads/master@{#448248}
Committed: https://chromium.googlesource.com/chromium/src/+/cdab762270b332aeb4c38f31d2a97720665fdf1d
Patch Set 1 #Patch Set 2 : CONTINUE_ON_SHUTDOWN #Patch Set 3 : include #Messages
Total messages: 15 (10 generated)
|