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

Unified Diff: base/task_scheduler/scheduler_worker_pool_params.cc

Issue 2686593003: DESIGN DISCUSSION ONLY Task Scheduler Single Thread Task Runner Manager for Dedicated Threads per S… (Closed)
Patch Set: Wait for Detached Thread to Complete Created 3 years, 10 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
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

Powered by Google App Engine
This is Rietveld 408576698