| // 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. |
| #include "base/task/task_scheduler/sequence_sort_key.h" |
| SequenceSortKey::SequenceSortKey(TaskPriority priority, |
| TimeTicks next_task_sequenced_time) |
| next_task_sequenced_time_(next_task_sequenced_time) {} |
| bool SequenceSortKey::operator<(const SequenceSortKey& other) const { |
| // This SequenceSortKey is considered less important than |other| if it has a |
| // lower priority or if it has the same priority but its next task was posted |
| const int priority_diff = |
| static_cast<int>(priority_) - static_cast<int>(other.priority_); |
| return next_task_sequenced_time_ > other.next_task_sequenced_time_; |