Home | History | Annotate | Download | only in notifications

Lines Matching defs:Balloon

17 class Balloon;
24 // Interface for a view that displays a balloon.
30 virtual void Show(Balloon* balloon) = 0;
35 // Reposition the view to match the position of its balloon.
49 class Balloon {
51 Balloon(const Notification& notification,
54 virtual ~Balloon();
78 // Request a new content size for this balloon. This will get passed
79 // to the balloon collection for checking against available space and
83 // Provides a view for this balloon. Ownership transfers
87 // Returns the balloon view associated with the balloon.
92 // Returns the viewing size for the balloon (content + frame).
95 // Shows the balloon.
101 // Called when the balloon is clicked by the user.
104 // Called when the balloon is closed, either by user (through the UI)
108 // Called by script to cause the balloon to close.
115 // The notification being shown in this balloon.
118 // The collection that this balloon belongs to. Non-owned pointer.
121 // The actual UI element for the balloon.
124 // Position and size of the balloon on the screen.
132 // Smallest size for this balloon where scrollbars will be shown.
135 DISALLOW_COPY_AND_ASSIGN(Balloon);