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

Unified Diff: base/task_scheduler/scheduler_worker_pool_impl_unittest.cc

Issue 2835603005: Remove name and priority hint from SchedulerWorkerPoolParams. (Closed)
Patch Set: Created 3 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 | « no previous file | base/task_scheduler/scheduler_worker_pool_params.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/task_scheduler/scheduler_worker_pool_impl_unittest.cc
diff --git a/base/task_scheduler/scheduler_worker_pool_impl_unittest.cc b/base/task_scheduler/scheduler_worker_pool_impl_unittest.cc
index 33efcef38e950574e0c6e74fa409d05bf202ca05..2bb7a067651de9a0153f7cd206620f1fa88b0fc4 100644
--- a/base/task_scheduler/scheduler_worker_pool_impl_unittest.cc
+++ b/base/task_scheduler/scheduler_worker_pool_impl_unittest.cc
@@ -91,8 +91,7 @@ class TaskSchedulerWorkerPoolImplTest
void StartWorkerPool(TimeDelta suggested_reclaim_time, size_t num_workers) {
ASSERT_TRUE(worker_pool_);
worker_pool_->Start(SchedulerWorkerPoolParams(
- "TestWorkerPool", ThreadPriority::NORMAL, StandbyThreadPolicy::LAZY,
- num_workers, suggested_reclaim_time));
+ StandbyThreadPolicy::LAZY, num_workers, suggested_reclaim_time));
}
void CreateAndStartWorkerPool(TimeDelta suggested_reclaim_time,
« no previous file with comments | « no previous file | base/task_scheduler/scheduler_worker_pool_params.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698