| Index: chrome/browser/sync/test_profile_sync_service.cc
|
| diff --git a/chrome/browser/sync/test_profile_sync_service.cc b/chrome/browser/sync/test_profile_sync_service.cc
|
| index a4efa924fbbd0d4ce2d91fda70ab85d660c79d15..c27241769e0e0b66b4e260b4e5441a989b8aa182 100644
|
| --- a/chrome/browser/sync/test_profile_sync_service.cc
|
| +++ b/chrome/browser/sync/test_profile_sync_service.cc
|
| @@ -146,19 +146,15 @@ void SyncBackendHostForProfileSyncTest::SetInitialSyncEndedForAllTypes() {
|
| }
|
| }
|
|
|
| -void SyncBackendHostForProfileSyncTest::EmitOnNotificationsEnabled() {
|
| - frontend()->OnNotificationsEnabled();
|
| +void SyncBackendHostForProfileSyncTest::EmitOnInvalidatorStateChange(
|
| + syncer::InvalidatorState state) {
|
| + frontend()->OnInvalidatorStateChange(state);
|
| }
|
|
|
| -void SyncBackendHostForProfileSyncTest::EmitOnNotificationsDisabled(
|
| - syncer::NotificationsDisabledReason reason) {
|
| - frontend()->OnNotificationsDisabled(reason);
|
| -}
|
| -
|
| -void SyncBackendHostForProfileSyncTest::EmitOnIncomingNotification(
|
| +void SyncBackendHostForProfileSyncTest::EmitOnIncomingInvalidation(
|
| const syncer::ObjectIdStateMap& id_state_map,
|
| - const syncer::IncomingNotificationSource source) {
|
| - frontend()->OnIncomingNotification(id_state_map, source);
|
| + const syncer::IncomingInvalidationSource source) {
|
| + frontend()->OnIncomingInvalidation(id_state_map, source);
|
| }
|
|
|
| } // namespace browser_sync
|
|
|