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

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

Issue 1705253002: TaskScheduler [3/9] Task and Sequence (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@s_1_scheduler_lock
Patch Set: CR from Dana and Gab #40-41 Created 4 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "base/task_scheduler/sequence_sort_key.h"
6
7 namespace base {
8 namespace internal {
9
10 SequenceSortKey::SequenceSortKey(TaskPriority priority,
11 TimeTicks next_task_sequenced_time)
12 : priority(priority), next_task_sequenced_time(next_task_sequenced_time) {}
13
14 bool SequenceSortKey::operator<(const SequenceSortKey& other) const {
15 // This SequenceSortKey is considered less important than |other| if it has a
16 // lower priority or if it has the same priority but its next task was posted
17 // later than |other|'s.
18 const int priority_diff =
19 static_cast<int>(priority) - static_cast<int>(other.priority);
20 if (priority_diff < 0)
21 return true;
22 if (priority_diff > 0)
23 return false;
24 return next_task_sequenced_time > other.next_task_sequenced_time;
25 }
26
27 } // namespace internal
28 } // namespace base
OLDNEW
« no previous file with comments | « base/task_scheduler/sequence_sort_key.h ('k') | base/task_scheduler/sequence_sort_key_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698