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

Unified Diff: components/component_updater/configurator_impl.cc

Issue 2446273006: Simplify return expression in ConfiguratorImpl::StepDelay() (Closed)
Patch Set: Created 4 years, 2 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/component_updater/configurator_impl.cc
diff --git a/components/component_updater/configurator_impl.cc b/components/component_updater/configurator_impl.cc
index 2f702574855ab730b8821d13205a06b77d825094..1da87add716765eaa3a4104ea808b6ae15c37246 100644
--- a/components/component_updater/configurator_impl.cc
+++ b/components/component_updater/configurator_impl.cc
@@ -130,7 +130,7 @@ int ConfiguratorImpl::NextCheckDelay() const {
}
int ConfiguratorImpl::StepDelay() const {
- return fast_update_ ? 1 : 1;
+ return 1;
}
int ConfiguratorImpl::OnDemandDelay() const {
« 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