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

Unified Diff: components/task_scheduler_util/common/variations_util.cc

Issue 2641193002: Remove "Missing Worker Pool Configuration: ..." DLOG. (Closed)
Patch Set: Created 3 years, 11 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/task_scheduler_util/common/variations_util.cc
diff --git a/components/task_scheduler_util/common/variations_util.cc b/components/task_scheduler_util/common/variations_util.cc
index 385b83bc94045d4459308e982daaf0a86323c7e9..25d32e3c3545a364658ccd3f96d30c5e4c90adb5 100644
--- a/components/task_scheduler_util/common/variations_util.cc
+++ b/components/task_scheduler_util/common/variations_util.cc
@@ -98,10 +98,8 @@ std::vector<base::SchedulerWorkerPoolParams> GetWorkerPoolParams(
constant_worker_pool_params_vector) {
const char* const worker_pool_name = constant_worker_pool_params.name();
auto it = variation_params.find(worker_pool_name);
- if (it == variation_params.end()) {
- DLOG(ERROR) << "Missing Worker Pool Configuration: " << worker_pool_name;
robliao 2017/01/19 16:58:23 Replace this with a non-branded builds comment in
fdoray 2017/01/19 17:02:47 Done.
+ if (it == variation_params.end())
return std::vector<base::SchedulerWorkerPoolParams>();
- }
const auto variable_worker_pool_params =
StringToVariableWorkerPoolParams(it->second);
if (variable_worker_pool_params.max_threads <= 0 ||
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698