Home | History | Annotate | Download | only in ui

Lines Matching refs:infobar

15 #include "chrome/browser/infobars/infobar.h"
133 // Creates a hung plugin infobar delegate and adds it to |infobar_service|.
216 // not we're currently showing the infobar.
225 // Possibly-null if we're not showing an infobar right now.
226 InfoBarDelegate* infobar;
228 // Time to delay before re-showing the infobar for a hung plugin. This is
232 // Handles calling the helper when the infobar should be re-shown.
251 infobar(NULL),
288 if (i->second->infobar)
289 infobar_service->RemoveInfoBar(i->second->infobar);
308 // Hung plugin became un-hung, close the infobar and delete our info.
309 if (found->second->infobar)
310 infobar_service->RemoveInfoBar(found->second->infobar);
336 InfoBarDelegate* infobar =
341 if (state->infobar == infobar) {
342 state->infobar = NULL;
344 // Schedule the timer to re-show the infobar if the plugin continues to be
409 DCHECK(!found->second->infobar);
419 DCHECK(!state->infobar);
420 state->infobar = HungPluginInfoBarDelegate::Create(infobar_service, this,
427 if (infobar_service && state->infobar) {
428 infobar_service->RemoveInfoBar(state->infobar);
429 state->infobar = NULL;