diff options
Diffstat (limited to 'chrome/browser/sync/glue/sync_backend_host.h')
-rw-r--r-- | chrome/browser/sync/glue/sync_backend_host.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/browser/sync/glue/sync_backend_host.h b/chrome/browser/sync/glue/sync_backend_host.h index 3cd75ce..3da5648 100644 --- a/chrome/browser/sync/glue/sync_backend_host.h +++ b/chrome/browser/sync/glue/sync_backend_host.h @@ -206,6 +206,7 @@ class SyncBackendHost : public browser_sync::ModelSafeWorkerRegistrar { const sync_api::BaseTransaction* trans, const sync_api::SyncManager::ChangeRecord* changes, int change_count); + virtual void OnChangesComplete(syncable::ModelType model_type); virtual void OnSyncCycleCompleted( const sessions::SyncSessionSnapshot* snapshot); virtual void OnInitializationComplete(); @@ -324,6 +325,10 @@ class SyncBackendHost : public browser_sync::ModelSafeWorkerRegistrar { ~Core(); + // Return change processor for a particular model (return NULL on failure). + ChangeProcessor* GetProcessor(syncable::ModelType modeltype); + + // Sends a SYNC_PAUSED notification to the notification service on // the UI thread. void NotifyPaused(); |