| Index: components/scheduler/base/work_queue.h
|
| diff --git a/components/scheduler/base/work_queue.h b/components/scheduler/base/work_queue.h
|
| index 9ff919d7f7e09786db3234d442051723e261685d..d7cf057912ee7d730f140652ca1985d50c563dfc 100644
|
| --- a/components/scheduler/base/work_queue.h
|
| +++ b/components/scheduler/base/work_queue.h
|
| @@ -49,11 +49,11 @@ class SCHEDULER_EXPORT WorkQueue {
|
|
|
| // Pushes the task onto the |work_queue_| and informs the WorkQueueSets if
|
| // the head changed.
|
| - void Push(const TaskQueueImpl::Task& task);
|
| + void Push(TaskQueueImpl::Task task);
|
|
|
| // Pushes the task onto the |work_queue_|, sets the |enqueue_order| and
|
| // informs the WorkQueueSets if the head changed.
|
| - void PushAndSetEnqueueOrder(const TaskQueueImpl::Task& task,
|
| + void PushAndSetEnqueueOrder(TaskQueueImpl::Task task,
|
| EnqueueOrder enqueue_order);
|
|
|
| // Swap the |work_queue_| with |incoming_queue| and informs the
|
|
|