Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Side by Side Diff: base/task_scheduler/task_scheduler_impl.cc

Issue 2721553003: Remove SingleThreadTaskRunner Support from SchedulerWorkerPoolImpl (Closed)
Patch Set: Rebase to 08266b3 Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 #include "base/task_scheduler/task_scheduler_impl.h" 5 #include "base/task_scheduler/task_scheduler_impl.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/bind_helpers.h" 10 #include "base/bind_helpers.h"
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 } 42 }
43 43
44 void TaskSchedulerImpl::PostDelayedTaskWithTraits( 44 void TaskSchedulerImpl::PostDelayedTaskWithTraits(
45 const tracked_objects::Location& from_here, 45 const tracked_objects::Location& from_here,
46 const TaskTraits& traits, 46 const TaskTraits& traits,
47 const Closure& task, 47 const Closure& task,
48 TimeDelta delay) { 48 TimeDelta delay) {
49 // Post |task| as part of a one-off single-task Sequence. 49 // Post |task| as part of a one-off single-task Sequence.
50 GetWorkerPoolForTraits(traits)->PostTaskWithSequence( 50 GetWorkerPoolForTraits(traits)->PostTaskWithSequence(
51 MakeUnique<Task>(from_here, task, traits, delay), 51 MakeUnique<Task>(from_here, task, traits, delay),
52 make_scoped_refptr(new Sequence), nullptr); 52 make_scoped_refptr(new Sequence));
53 } 53 }
54 54
55 scoped_refptr<TaskRunner> TaskSchedulerImpl::CreateTaskRunnerWithTraits( 55 scoped_refptr<TaskRunner> TaskSchedulerImpl::CreateTaskRunnerWithTraits(
56 const TaskTraits& traits) { 56 const TaskTraits& traits) {
57 return GetWorkerPoolForTraits(traits)->CreateTaskRunnerWithTraits(traits); 57 return GetWorkerPoolForTraits(traits)->CreateTaskRunnerWithTraits(traits);
58 } 58 }
59 59
60 scoped_refptr<SequencedTaskRunner> 60 scoped_refptr<SequencedTaskRunner>
61 TaskSchedulerImpl::CreateSequencedTaskRunnerWithTraits( 61 TaskSchedulerImpl::CreateSequencedTaskRunnerWithTraits(
62 const TaskTraits& traits) { 62 const TaskTraits& traits) {
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 // in |sequence|. 191 // in |sequence|.
192 const TaskTraits traits = 192 const TaskTraits traits =
193 sequence->PeekTaskTraits().WithPriority(sort_key.priority()); 193 sequence->PeekTaskTraits().WithPriority(sort_key.priority());
194 194
195 GetWorkerPoolForTraits(traits)->ReEnqueueSequence(std::move(sequence), 195 GetWorkerPoolForTraits(traits)->ReEnqueueSequence(std::move(sequence),
196 sort_key); 196 sort_key);
197 } 197 }
198 198
199 } // namespace internal 199 } // namespace internal
200 } // namespace base 200 } // namespace base
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698