| Index: base/task_scheduler/scheduler_worker_pool_params.cc
 | 
| diff --git a/base/task_scheduler/scheduler_worker_pool_params.cc b/base/task_scheduler/scheduler_worker_pool_params.cc
 | 
| index 0747c2ed2cd5bf8a3e92064fc97a74c0793f4be5..43a66d0f87f9208324ed9f34153cd4e7621bc0a3 100644
 | 
| --- a/base/task_scheduler/scheduler_worker_pool_params.cc
 | 
| +++ b/base/task_scheduler/scheduler_worker_pool_params.cc
 | 
| @@ -21,9 +21,9 @@ SchedulerWorkerPoolParams::SchedulerWorkerPoolParams(
 | 
|        backward_compatibility_(backward_compatibility) {}
 | 
|  
 | 
|  SchedulerWorkerPoolParams::SchedulerWorkerPoolParams(
 | 
| -    SchedulerWorkerPoolParams&& other) = default;
 | 
| +    const SchedulerWorkerPoolParams& other) = default;
 | 
|  
 | 
|  SchedulerWorkerPoolParams& SchedulerWorkerPoolParams::operator=(
 | 
| -    SchedulerWorkerPoolParams&& other) = default;
 | 
| +    const SchedulerWorkerPoolParams& other) = default;
 | 
|  
 | 
|  }  // namespace base
 | 
| 
 |