Home | History | Annotate | Download | only in tab_contents

Lines Matching refs:InfoBar

16 class InfoBar;
23 // An interface implemented by objects wishing to control an InfoBar.
24 // Implementing this interface is not sufficient to use an InfoBar, since it
25 // does not map to a specific InfoBar type. Instead, you must implement either
27 // delegate for your own InfoBar variety.
33 // you need to consider the fact that more than one InfoBar instance can exist
35 // ever fully show one infobar (they don't stack). The dual-references occur
36 // because a second InfoBar can be added while the first one is in the process
40 // fatal consequences for the InfoBar that was in the process of opening (or is
47 // The type of the infobar. It controls its appearance, such as its background
56 // Called to create the InfoBar. Implementation of this method is
58 virtual InfoBar* CreateInfoBar() = 0;
68 // Returns true if the InfoBar should be closed automatically after the page
74 // Called when the user clicks on the close button to dismiss the infobar.
77 // Called after the InfoBar is closed. The delegate is free to delete itself
81 // Return the icon to be shown for this InfoBar. If the returned bitmap is
85 // Returns the type of the infobar. The type determines the appearance (such
86 // as background color) of the infobar.