 Chromium Code Reviews
 Chromium Code Reviews Issue 1704113002:
  TaskScheduler [6] SchedulerWorkerThread  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@s_4_shutdown
    
  
    Issue 1704113002:
  TaskScheduler [6] SchedulerWorkerThread  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@s_4_shutdown| Index: base/task_scheduler/utils.h | 
| diff --git a/base/task_scheduler/utils.h b/base/task_scheduler/utils.h | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..9e5f1edbd9f2eaa2967f6bab0f640296fda4aa2c | 
| --- /dev/null | 
| +++ b/base/task_scheduler/utils.h | 
| @@ -0,0 +1,31 @@ | 
| +// Copyright 2016 The Chromium Authors. All rights reserved. | 
| +// Use of this source code is governed by a BSD-style license that can be | 
| +// found in the LICENSE file. | 
| + | 
| +#ifndef BASE_TASK_SCHEDULER_UTILS_H_ | 
| +#define BASE_TASK_SCHEDULER_UTILS_H_ | 
| + | 
| +#include "base/base_export.h" | 
| +#include "base/memory/ref_counted.h" | 
| +#include "base/memory/scoped_ptr.h" | 
| +#include "base/task_scheduler/sequence.h" | 
| +#include "base/task_scheduler/task.h" | 
| + | 
| +namespace base { | 
| +namespace internal { | 
| + | 
| +class PriorityQueue; | 
| +class TaskTracker; | 
| + | 
| +// If |task_tracker| allows |task| to be posted, inserts it into |sequence|. | 
| 
robliao
2016/03/24 23:03:26
Nit: This is restating the implementation. Perhaps
 
robliao
2016/03/24 23:03:26
Nit: PostTaskHelper inserts it into |sequence|.
 
fdoray
2016/03/29 18:33:34
Done.
 
fdoray
2016/03/29 18:33:34
Done.
 | 
| +// Then, inserts |sequence| into |priority_queue| if it was empty before |task| | 
| +// was inserted into it. | 
| +void BASE_EXPORT PostTaskHelper(scoped_ptr<Task> task, | 
| + scoped_refptr<Sequence> sequence, | 
| + PriorityQueue* priority_queue, | 
| + TaskTracker* task_tracker); | 
| + | 
| +} // namespace internal | 
| +} // namespace base | 
| + | 
| +#endif // BASE_TASK_SCHEDULER_UTILS_H_ |