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

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: Fix rebase. 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 11a5306f00a1e0836488d7d233308d57a75f4ea7..9a3b87710d193b910b7f97461bcd13f82f0a1424 100644
--- a/chrome/browser/chromeos/customization/customization_document.cc
+++ b/chrome/browser/chromeos/customization/customization_document.cc
@@ -563,9 +563,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