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

Unified Diff: chrome/browser/chromeos/customization/customization_document.cc

Issue 834073002: ChromeOS: Implement periodic timezone refresh on geolocation data. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Switch feature to disabled by default. Created 5 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
Index: chrome/browser/chromeos/customization/customization_document.cc
diff --git a/chrome/browser/chromeos/customization/customization_document.cc b/chrome/browser/chromeos/customization/customization_document.cc
index 29ffe68c311bb0ca393c7cadd0df0b94088d0830..ca56989f28e15f1dc2a76d940bae09b16ff86ae0 100644
--- a/chrome/browser/chromeos/customization/customization_document.cc
+++ b/chrome/browser/chromeos/customization/customization_document.cc
@@ -567,9 +567,9 @@ void ServicesCustomizationDocument::OnManifesteRead(
}
void ServicesCustomizationDocument::StartFileFetch() {
- DelayNetworkCall(base::Bind(&ServicesCustomizationDocument::DoStartFileFetch,
- weak_ptr_factory_.GetWeakPtr()),
- network_delay_);
+ DelayNetworkCall(network_delay_,
+ base::Bind(&ServicesCustomizationDocument::DoStartFileFetch,
+ weak_ptr_factory_.GetWeakPtr()));
}
void ServicesCustomizationDocument::DoStartFileFetch() {

Powered by Google App Engine
This is Rietveld 408576698