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

Unified Diff: chrome/browser/sync/profile_sync_service.cc

Issue 7812036: Update base/timer.h code to pass through Location from call sites. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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/sync/profile_sync_service.cc
diff --git a/chrome/browser/sync/profile_sync_service.cc b/chrome/browser/sync/profile_sync_service.cc
index 4480774cb8b4e869c4cda223fe9ed6f8d6043f04..b45a4c7f7b05dc9bb7480023fae93169830d16cc 100644
--- a/chrome/browser/sync/profile_sync_service.cc
+++ b/chrome/browser/sync/profile_sync_service.cc
@@ -479,7 +479,7 @@ void ProfileSyncService::ClearServerData() {
clear_server_data_state_ = CLEAR_CLEARING;
clear_server_data_timer_.Start(
base::TimeDelta::FromSeconds(kSyncClearDataTimeoutInSeconds), this,
- &ProfileSyncService::OnClearServerDataTimeout);
+ &ProfileSyncService::OnClearServerDataTimeout, FROM_HERE);
backend_->RequestClearServerData();
}

Powered by Google App Engine
This is Rietveld 408576698