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

Unified Diff: chrome/browser/sync/engine/syncapi.cc

Issue 7281017: [Sync] Add RequestCleanupDisabledTypes() method to SyncManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix migration integration tests Created 9 years, 5 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/engine/syncapi.cc
diff --git a/chrome/browser/sync/engine/syncapi.cc b/chrome/browser/sync/engine/syncapi.cc
index ec94b21a3182e9e20b89e3aa119f1da40b5fa3b6..9f3bc6792856263a643b3bb6e12c137501b4d4e1 100644
--- a/chrome/browser/sync/engine/syncapi.cc
+++ b/chrome/browser/sync/engine/syncapi.cc
@@ -1701,8 +1701,9 @@ bool SyncManager::IsUsingExplicitPassphrase() {
return data_ && data_->IsUsingExplicitPassphrase();
}
-void SyncManager::RequestNudge(const tracked_objects::Location& location) {
- data_->RequestNudge(location);
+void SyncManager::RequestCleanupDisabledTypes() {
+ if (data_->scheduler())
+ data_->scheduler()->ScheduleCleanupDisabledTypes();
}
void SyncManager::RequestClearServerData() {

Powered by Google App Engine
This is Rietveld 408576698