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

Unified Diff: base/task_scheduler/priority_queue.cc

Issue 1895903003: base: Add out-of-line copy ctors for complex classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/task_scheduler/priority_queue.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/task_scheduler/priority_queue.cc
diff --git a/base/task_scheduler/priority_queue.cc b/base/task_scheduler/priority_queue.cc
index 05a90b22f8d85d90bd958e8aa2de6247af4a86c0..2cd8980a4eefd5b4213bc50d6ef36281ec204d06 100644
--- a/base/task_scheduler/priority_queue.cc
+++ b/base/task_scheduler/priority_queue.cc
@@ -20,6 +20,9 @@ PriorityQueue::SequenceAndSortKey::SequenceAndSortKey(
const SequenceSortKey& sort_key)
: sequence(std::move(sequence)), sort_key(sort_key) {}
+PriorityQueue::SequenceAndSortKey::SequenceAndSortKey(
+ const SequenceAndSortKey& other) = default;
+
PriorityQueue::SequenceAndSortKey::~SequenceAndSortKey() = default;
PriorityQueue::Transaction::Transaction(PriorityQueue* outer_queue)
« no previous file with comments | « base/task_scheduler/priority_queue.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698