Index: chrome/browser/sync/engine/syncer_command.cc |
diff --git a/chrome/browser/sync/engine/syncer_command.cc b/chrome/browser/sync/engine/syncer_command.cc |
index 2c58795096d843c0b1fc0ee429169a64ea96c840..f95cf40113a49818e45131a98729e58bfe48f0f9 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); |
} |
} |
} |