Home | History | Annotate | Download | only in notifications

Lines Matching refs:balloon

16 class Balloon;
27 typedef std::deque<Balloon*> Balloons;
29 // Adds a balloon to the collection. Takes ownership of pointer.
30 virtual void Add(Balloon* balloon);
32 // Removes a balloon from the collection (if present). Frees
34 virtual void Remove(Balloon* balloon);
36 // Finds any balloon matching the given notification id, and
51 // Returns the balloon matching the given notification, or
52 // NULL if there is no matching balloon.
53 Balloon* FindBalloon(const Notification& notification);