HomeSort by relevance Sort by last modified time
    Searched defs:InfoBar (Results 1 - 5 of 5) sorted by null

  /external/chromium/chrome/browser/ui/cocoa/infobars/
infobar.h 17 // have, but since there is no pre-defined InfoBar interface, it is
21 // Callers should delete the returned InfoBar immediately after
22 // calling CreateInfoBar(), as the returned InfoBar* object is not
25 // scoped_ptr<InfoBar> infobar(delegate->CreateInfoBar());
26 // InfoBarController* controller = infobar->controller();
28 // // deleted later. |infobar| will be deleted automatically.
30 class InfoBar {
32 InfoBar(InfoBarController* controller) {
42 // Pointer to the infobar controller. Is never null
    [all...]
  /external/chromium/chrome/browser/ui/views/infobars/
infobar.cc 5 #include "chrome/browser/ui/views/infobars/infobar.h"
13 InfoBar::InfoBar(InfoBarDelegate* delegate)
26 InfoBar::~InfoBar() {
29 void InfoBar::Show(bool animate) {
38 void InfoBar::Hide(bool animate) {
48 void InfoBar::SetArrowTargetHeight(int height) {
58 void InfoBar::AnimationProgressed(const ui::Animation* animation) {
62 void InfoBar::RemoveInfoBar()
    [all...]
infobar.h 21 class InfoBar : public ui::AnimationDelegate {
23 explicit InfoBar(InfoBarDelegate* delegate);
24 virtual ~InfoBar();
38 // Makes the infobar visible. If |animate| is true, the infobar is then
42 // Makes the infobar hidden. If |animate| is true, the infobar is first
43 // animated to zero size. Once the infobar is hidden, it is removed from its
47 // Changes the target height of the arrow portion of the infobar. This has no
48 // effect once the infobar is animating closed
    [all...]
  /external/chromium/chrome/browser/ui/gtk/infobars/
infobar_gtk.h 25 class InfoBar : public SlideAnimatorGtk::Delegate,
29 explicit InfoBar(InfoBarDelegate* delegate);
30 virtual ~InfoBar();
34 // Get the top level native GTK widget for this infobar.
38 // InfoBar is added to the view hierarchy.
41 // Starts animating the InfoBar open.
44 // Opens the InfoBar immediately.
47 // Starts animating the InfoBar closed. It will not be closed until the
51 // Closes the InfoBar immediately and removes it from its container. Notifies
52 // the delegate that it has closed. The InfoBar is deleted after this functio
    [all...]
infobar_gtk.cc 20 extern const int InfoBar::kInfoBarHeight = 37;
24 // Pixels between infobar elements.
34 const int InfoBar::kEndOfLabelSpacing = 6;
35 const int InfoBar::kButtonButtonSpacing = 3;
37 InfoBar::InfoBar(InfoBarDelegate* delegate)
80 // We store a pointer back to |this| so we can refer to it from the infobar
85 InfoBar::~InfoBar() {
88 GtkWidget* InfoBar::widget()
    [all...]

Completed in 276 milliseconds