| Index: sync/test/engine/fake_sync_scheduler.cc | 
| diff --git a/sync/test/engine/fake_sync_scheduler.cc b/sync/test/engine/fake_sync_scheduler.cc | 
| index 2d3406067a74b55cd195a2f2e987f4c8f4417523..c2909e80a30781c6f23e4f49f64073e2d203c969 100644 | 
| --- a/sync/test/engine/fake_sync_scheduler.cc | 
| +++ b/sync/test/engine/fake_sync_scheduler.cc | 
| @@ -18,17 +18,22 @@ void FakeSyncScheduler::RequestStop(const base::Closure& callback) { | 
| created_on_loop_->PostTask(FROM_HERE, callback); | 
| } | 
|  | 
| -void FakeSyncScheduler::ScheduleNudgeAsync( | 
| -     const base::TimeDelta& delay, | 
| -     NudgeSource source, | 
| -     ModelTypeSet types, | 
| -     const tracked_objects::Location& nudge_location) { | 
| +void FakeSyncScheduler::ScheduleLocalNudge( | 
| +    const base::TimeDelta& desired_delay, | 
| +    ModelTypeSet types, | 
| +    const tracked_objects::Location& nudge_location) { | 
| } | 
|  | 
| -void FakeSyncScheduler::ScheduleNudgeWithStatesAsync( | 
| -     const base::TimeDelta& delay, NudgeSource source, | 
| -     const ModelTypeInvalidationMap& invalidation_map, | 
| -     const tracked_objects::Location& nudge_location) { | 
| +void FakeSyncScheduler::ScheduleLocalRefreshRequest( | 
| +    const base::TimeDelta& desired_delay, | 
| +    ModelTypeSet types, | 
| +    const tracked_objects::Location& nudge_location) { | 
| +} | 
| + | 
| +void FakeSyncScheduler::ScheduleInvalidationNudge( | 
| +    const base::TimeDelta& desired_delay, | 
| +    const ModelTypeInvalidationMap& invalidation_map, | 
| +    const tracked_objects::Location& nudge_location) { | 
| } | 
|  | 
| bool FakeSyncScheduler::ScheduleConfiguration( | 
| @@ -71,6 +76,9 @@ void FakeSyncScheduler::OnReceivedSessionsCommitDelay( | 
| const base::TimeDelta& new_delay) { | 
| } | 
|  | 
| +void FakeSyncScheduler::OnReceivedClientInvalidationHintBufferSize(int size) { | 
| +} | 
| + | 
| void FakeSyncScheduler::OnShouldStopSyncingPermanently() { | 
| } | 
|  | 
|  |