Home | History | Annotate | Download | only in notifier

Lines Matching refs:ids

26 // A simple class that tracks sets of object IDs that have not yet been
27 // acknowledged. Internally, it manages timeouts for the tracked object IDs and
37 // |ids| contains all object IDs that have timed out in this time interval.
38 virtual void OnTimeout(const ObjectIdSet& ids) = 0;
47 // Equivalent to calling Ack() on all currently registered object IDs.
50 // Starts tracking timeouts for |ids|. Timeouts will be triggered for each
52 // performed; calling Track() twice on the same set of ids will result in two
53 // different timeouts being triggered for those ids.
54 void Track(const ObjectIdSet& ids);
55 // Marks a set of |ids| as acknowledged.
56 void Ack(const ObjectIdSet& ids);
70 Entry(scoped_ptr<net::BackoffEntry> backoff, const ObjectIdSet& ids);
74 ObjectIdSet ids;