diff options
Diffstat (limited to 'chrome/browser/sync/engine/syncer_command.cc')
-rw-r--r-- | chrome/browser/sync/engine/syncer_command.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/sync/engine/syncer_command.cc b/chrome/browser/sync/engine/syncer_command.cc index 2c58795..f95cf40 100644 --- a/chrome/browser/sync/engine/syncer_command.cc +++ b/chrome/browser/sync/engine/syncer_command.cc @@ -34,11 +34,11 @@ void SyncerCommand::SendNotifications(SyncSession* session) { const sessions::SyncSessionSnapshot& snapshot(session->TakeSnapshot()); event.snapshot = &snapshot; DCHECK(session->context()->syncer_event_channel()); - session->context()->syncer_event_channel()->NotifyListeners(event); + session->context()->syncer_event_channel()->Notify(event); if (session->status_controller()->syncer_status().over_quota) { SyncerEvent quota_event(SyncerEvent::OVER_QUOTA); quota_event.snapshot = &snapshot; - session->context()->syncer_event_channel()->NotifyListeners(quota_event); + session->context()->syncer_event_channel()->Notify(quota_event); } } } |