| Index: sync/engine/syncer.h
|
| diff --git a/sync/engine/syncer.h b/sync/engine/syncer.h
|
| index 02e66e39c7086ba8eb32c1a20944e32368f5a152..ca93b360820c97166775209d089a7fad9731c1e7 100644
|
| --- a/sync/engine/syncer.h
|
| +++ b/sync/engine/syncer.h
|
| @@ -48,7 +48,7 @@ class SYNC_EXPORT_PRIVATE Syncer {
|
| // sync. The |nudge_tracker| contains state that describes why the client is
|
| // out of sync and what must be done to bring it back into sync.
|
| virtual bool NormalSyncShare(ModelTypeSet request_types,
|
| - const sessions::NudgeTracker& nudge_tracker,
|
| + sessions::NudgeTracker* nudge_tracker,
|
| sessions::SyncSession* session);
|
|
|
| // Performs an initial download for the |request_types|. It is assumed that
|
| @@ -79,10 +79,10 @@ class SYNC_EXPORT_PRIVATE Syncer {
|
| // number of unsynced and ready to commit items reaches zero or an error is
|
| // encountered. A request to exit early will be treated as an error and will
|
| // abort any blocking operations.
|
| - SyncerError BuildAndPostCommits(
|
| - ModelTypeSet request_types,
|
| - sessions::SyncSession* session,
|
| - CommitProcessor* commit_processor);
|
| + SyncerError BuildAndPostCommits(ModelTypeSet request_types,
|
| + sessions::NudgeTracker* nudge_tracker,
|
| + sessions::SyncSession* session,
|
| + CommitProcessor* commit_processor);
|
|
|
| void HandleCycleBegin(sessions::SyncSession* session);
|
| bool HandleCycleEnd(
|
|
|