Chromium Code Reviews| Index: components/variations/variations_request_scheduler.cc | 
| diff --git a/components/variations/variations_request_scheduler.cc b/components/variations/variations_request_scheduler.cc | 
| index 08d39d10ce22b6faad27f31c023c3dfada68c6f5..dfc39d9c13839cf3e5b9d54daa90b03ae6e5e32b 100644 | 
| --- a/components/variations/variations_request_scheduler.cc | 
| +++ b/components/variations/variations_request_scheduler.cc | 
| @@ -47,7 +47,7 @@ void VariationsRequestScheduler::OnAppEnterForeground() { | 
| base::TimeDelta VariationsRequestScheduler::GetFetchPeriod() const { | 
| // The fetch interval can be overridden by a variation param. | 
| std::string period_min_str = | 
| - variations::GetVariationParamValue("VarationsServiceControl", | 
| + variations::GetVariationParamValue("VariationsServiceControl", | 
| 
 
rkaplow
2016/08/08 22:30:09
this typo exists in client side logic as well. Did
 
Alexei Svitkine (slow)
2016/08/08 22:33:38
So we still want to keep this param, as the plan t
 
rkaplow
2016/08/08 22:45:48
Ok, wasn't sure what would happen - I guess it jus
 
 | 
| "fetch_period_min"); | 
| size_t period_min; | 
| if (base::StringToSizeT(period_min_str, &period_min)) |