Home | History | Annotate | Download | only in browser

Lines Matching full:tab_contents

13 #include "chrome/browser/tab_contents/confirm_infobar_delegate.h"
14 #include "chrome/browser/tab_contents/simple_alert_infobar_delegate.h"
18 #include "content/browser/tab_contents/tab_contents.h"
35 PluginInfoBarDelegate(TabContents* tab_contents, const string16& name);
58 PluginInfoBarDelegate::PluginInfoBarDelegate(TabContents* tab_contents,
60 : ConfirmInfoBarDelegate(tab_contents),
62 tab_contents_(tab_contents) {
97 BlockedPluginInfoBarDelegate(TabContents* tab_contents,
117 TabContents* tab_contents,
119 : PluginInfoBarDelegate(tab_contents, utf16_name) {
189 OutdatedPluginInfoBarDelegate(TabContents* tab_contents,
212 TabContents* tab_contents,
215 : PluginInfoBarDelegate(tab_contents, utf16_name),
291 PluginObserver::PluginObserver(TabContents* tab_contents)
292 : TabContentsObserver(tab_contents) {
312 plugin_installer_.reset(new PluginInstallerInfoBarDelegate(tab_contents()));
320 tab_contents()->AddInfoBar(
321 new PluginInstallerInfoBarDelegate(tab_contents()));
327 for (size_t i = 0; i < tab_contents()->infobar_count(); ++i) {
328 InfoBarDelegate* delegate = tab_contents()->GetInfoBarDelegateAt(i);
330 tab_contents()->RemoveInfoBar(delegate);
356 tab_contents()->AddInfoBar(new SimpleAlertInfoBarDelegate(tab_contents(),
364 tab_contents()->AddInfoBar(update_url.is_empty() ?
366 tab_contents(), name)) :
367 new OutdatedPluginInfoBarDelegate(tab_contents(), name, update_url));