Home | History | Annotate | Download | only in infobars

Lines Matching refs:infobar

28 // If |infobar_widget| matches |info_bar_delegate|, then close the infobar.
33 InfoBar* infobar = reinterpret_cast<InfoBar*>(
36 if (!infobar) {
41 if (delegate == infobar->delegate())
42 infobar->AnimateClose();
45 // If |infobar_widget| matches |info_bar_delegate|, then close the infobar w/o
50 InfoBar* infobar = reinterpret_cast<InfoBar*>(
53 if (!infobar) {
58 if (delegate == infobar->delegate())
59 infobar->Close();
66 InfoBar* infobar = reinterpret_cast<InfoBar*>(
68 if (infobar->IsAnimating())
155 InfoBar* last_bar = NULL;
156 InfoBar* this_bar = NULL;
158 this_bar = reinterpret_cast<InfoBar*>(
179 InfoBar* infobar = delegate->CreateInfoBar();
180 infobar->set_container(this);
181 infobar->SetThemeProvider(GtkThemeService::GetFrom(profile_));
182 gtk_box_pack_start(GTK_BOX(widget()), infobar->widget(),
186 infobar->AnimateOpen();
188 infobar->Open();
214 void InfoBarContainerGtk::UpdateToolbarInfoBarState(InfoBar* infobar,
220 browser_window->SetInfoBarShowing(infobar, animate);