| Index: base/task_scheduler/priority_queue.h
|
| diff --git a/base/task_scheduler/priority_queue.h b/base/task_scheduler/priority_queue.h
|
| index 8676c932c75e5906e14f1527e2e2a86ef16501be..8e0a5321793343c64b5e146394588e0233e8cdeb 100644
|
| --- a/base/task_scheduler/priority_queue.h
|
| +++ b/base/task_scheduler/priority_queue.h
|
| @@ -32,9 +32,6 @@ class BASE_EXPORT PriorityQueue {
|
| // Constructs a SequenceAndSortKey with the given |sequence| and |sort_key|.
|
| SequenceAndSortKey(scoped_refptr<Sequence> sequence,
|
| const SequenceSortKey& sort_key);
|
| -
|
| - SequenceAndSortKey(const SequenceAndSortKey& other);
|
| -
|
| ~SequenceAndSortKey();
|
|
|
| // Returns true if this is a null SequenceAndSortKey.
|
| @@ -42,6 +39,9 @@ class BASE_EXPORT PriorityQueue {
|
|
|
| const scoped_refptr<Sequence> sequence;
|
| const SequenceSortKey sort_key;
|
| +
|
| + private:
|
| + DISALLOW_COPY_AND_ASSIGN(SequenceAndSortKey);
|
| };
|
|
|
| // A Transaction can perform multiple operations atomically on a
|
|
|