| Index: sync/internal_api/debug_info_event_listener.cc
|
| diff --git a/sync/internal_api/debug_info_event_listener.cc b/sync/internal_api/debug_info_event_listener.cc
|
| index b3d55056eb77f307c34427b13d2d31a9c6dc3c5a..3e7780cbe17b5656a42469e04e1fc60bbbcc018a 100644
|
| --- a/sync/internal_api/debug_info_event_listener.cc
|
| +++ b/sync/internal_api/debug_info_event_listener.cc
|
| @@ -4,7 +4,6 @@
|
|
|
| #include "sync/internal_api/debug_info_event_listener.h"
|
|
|
| -#include "sync/notifier/object_id_invalidation_map.h"
|
| #include "sync/util/cryptographer.h"
|
|
|
| namespace syncer {
|
| @@ -128,21 +127,6 @@ void DebugInfoEventListener::OnNudgeFromDatatype(ModelType datatype) {
|
| AddEventToQueue(event_info);
|
| }
|
|
|
| -void DebugInfoEventListener::OnIncomingNotification(
|
| - const ObjectIdInvalidationMap& invalidation_map) {
|
| - DCHECK(thread_checker_.CalledOnValidThread());
|
| - sync_pb::DebugEventInfo event_info;
|
| - ModelTypeSet types =
|
| - ObjectIdSetToModelTypeSet(invalidation_map.GetObjectIds());
|
| -
|
| - for (ModelTypeSet::Iterator it = types.First(); it.Good(); it.Inc()) {
|
| - event_info.add_datatypes_notified_from_server(
|
| - GetSpecificsFieldNumberFromModelType(it.Get()));
|
| - }
|
| -
|
| - AddEventToQueue(event_info);
|
| -}
|
| -
|
| void DebugInfoEventListener::GetDebugInfo(sync_pb::DebugInfo* debug_info) {
|
| DCHECK(thread_checker_.CalledOnValidThread());
|
| DCHECK_LE(events_.size(), kMaxEntries);
|
|
|