HomeSort by relevance Sort by last modified time
    Searched refs:ConfirmInfoBarDelegate (Results 1 - 25 of 40) sorted by null

1 2

  /external/chromium/chrome/browser/tab_contents/
confirm_infobar_delegate.cc 11 int ConfirmInfoBarDelegate::GetButtons() const {
15 string16 ConfirmInfoBarDelegate::GetButtonLabel(InfoBarButton button) const {
19 bool ConfirmInfoBarDelegate::NeedElevation(InfoBarButton button) const {
23 bool ConfirmInfoBarDelegate::Accept() {
27 bool ConfirmInfoBarDelegate::Cancel() {
31 string16 ConfirmInfoBarDelegate::GetLinkText() {
35 bool ConfirmInfoBarDelegate::LinkClicked(WindowOpenDisposition disposition) {
39 ConfirmInfoBarDelegate::ConfirmInfoBarDelegate(TabContents* contents)
43 ConfirmInfoBarDelegate::~ConfirmInfoBarDelegate()
    [all...]
confirm_infobar_delegate.h 16 class ConfirmInfoBarDelegate : public InfoBarDelegate {
58 explicit ConfirmInfoBarDelegate(TabContents* contents);
59 virtual ~ConfirmInfoBarDelegate();
65 virtual ConfirmInfoBarDelegate* AsConfirmInfoBarDelegate() OVERRIDE;
67 DISALLOW_COPY_AND_ASSIGN(ConfirmInfoBarDelegate);
simple_alert_infobar_delegate.cc 16 : ConfirmInfoBarDelegate(contents),
27 return auto_expire_ && ConfirmInfoBarDelegate::ShouldExpire(details);
infobar_delegate.h 14 class ConfirmInfoBarDelegate;
26 // LinkInfoBarDelegate or ConfirmInfoBarDelegate, or override with your own
90 virtual ConfirmInfoBarDelegate* AsConfirmInfoBarDelegate();
simple_alert_infobar_delegate.h 17 class SimpleAlertInfoBarDelegate : public ConfirmInfoBarDelegate {
27 // ConfirmInfoBarDelegate:
infobar_delegate.cc 43 ConfirmInfoBarDelegate* InfoBarDelegate::AsConfirmInfoBarDelegate() {
  /external/chromium/chrome/browser/ui/gtk/infobars/
confirm_infobar_gtk.h 21 explicit ConfirmInfoBarGtk(ConfirmInfoBarDelegate* delegate);
28 void AddButton(ConfirmInfoBarDelegate::InfoBarButton type);
confirm_infobar_gtk.cc 14 // ConfirmInfoBarDelegate ------------------------------------------------------
16 InfoBar* ConfirmInfoBarDelegate::CreateInfoBar() {
22 ConfirmInfoBarGtk::ConfirmInfoBarGtk(ConfirmInfoBarDelegate* delegate)
34 AddButton(ConfirmInfoBarDelegate::BUTTON_OK);
35 AddButton(ConfirmInfoBarDelegate::BUTTON_CANCEL);
64 void ConfirmInfoBarGtk::AddButton(ConfirmInfoBarDelegate::InfoBarButton type) {
70 G_CALLBACK(type == ConfirmInfoBarDelegate::BUTTON_OK ?
  /external/chromium/chrome/browser/ui/views/infobars/
confirm_infobar.h 12 class ConfirmInfoBarDelegate;
24 explicit ConfirmInfoBar(ConfirmInfoBarDelegate* delegate);
38 ConfirmInfoBarDelegate* GetDelegate();
confirm_infobar.cc 12 // ConfirmInfoBarDelegate -----------------------------------------------------
14 InfoBar* ConfirmInfoBarDelegate::CreateInfoBar() {
20 ConfirmInfoBar::ConfirmInfoBar(ConfirmInfoBarDelegate* delegate)
66 ConfirmInfoBarDelegate* delegate = GetDelegate();
70 if (delegate->GetButtons() & ConfirmInfoBarDelegate::BUTTON_OK) {
72 delegate->GetButtonLabel(ConfirmInfoBarDelegate::BUTTON_OK),
73 delegate->NeedElevation(ConfirmInfoBarDelegate::BUTTON_OK));
77 if (delegate->GetButtons() & ConfirmInfoBarDelegate::BUTTON_CANCEL) {
79 delegate->GetButtonLabel(ConfirmInfoBarDelegate::BUTTON_CANCEL),
80 delegate->NeedElevation(ConfirmInfoBarDelegate::BUTTON_CANCEL))
    [all...]
  /external/chromium/chrome/browser/
plugin_installer_infobar_delegate.h 15 class PluginInstallerInfoBarDelegate : public ConfirmInfoBarDelegate {
22 // ConfirmInfoBarDelegate:
plugin_installer_infobar_delegate.cc 17 : ConfirmInfoBarDelegate(tab_contents),
password_manager_delegate_impl.cc 28 class SavePasswordInfoBarDelegate : public ConfirmInfoBarDelegate {
43 // ConfirmInfoBarDelegate
65 : ConfirmInfoBarDelegate(tab_contents),
  /external/chromium/chrome/browser/ui/
collected_cookies_infobar_delegate.h 15 class CollectedCookiesInfoBarDelegate : public ConfirmInfoBarDelegate {
20 // ConfirmInfoBarDelegate overrides.
collected_cookies_infobar_delegate.cc 16 : ConfirmInfoBarDelegate(tab_contents),
  /external/chromium/chrome/browser/download/
download_request_infobar_delegate.h 19 class DownloadRequestInfoBarDelegate : public ConfirmInfoBarDelegate {
32 // ConfirmInfoBarDelegate:
download_request_infobar_delegate.cc 16 : ConfirmInfoBarDelegate(tab),
  /external/chromium/chrome/browser/custom_handlers/
register_protocol_handler_infobar_delegate.h 19 class RegisterProtocolHandlerInfoBarDelegate : public ConfirmInfoBarDelegate {
25 // ConfirmInfoBarDelegate:
register_protocol_handler_infobar_delegate.cc 16 : ConfirmInfoBarDelegate(tab_contents),
  /external/chromium/chrome/browser/autofill/
autofill_cc_infobar_delegate.h 25 class AutofillCCInfoBarDelegate : public ConfirmInfoBarDelegate {
37 // ConfirmInfoBarDelegate:
autofill_cc_infobar_delegate.cc 22 : ConfirmInfoBarDelegate(tab_contents),
  /external/chromium/chrome/browser/extensions/
theme_installed_infobar_delegate.h 19 class ThemeInstalledInfoBarDelegate : public ConfirmInfoBarDelegate,
35 // ConfirmInfoBarDelegate:
39 // ConfirmInfoBarDelegate:
  /external/chromium/chrome/browser/ui/cocoa/infobars/
mock_confirm_infobar_delegate.cc 13 : ConfirmInfoBarDelegate(NULL),
mock_confirm_infobar_delegate.h 16 class MockConfirmInfoBarDelegate : public ConfirmInfoBarDelegate {
33 // ConfirmInfoBarDelegate:
  /external/chromium/chrome/browser/geolocation/
geolocation_permission_context_unittest.cc 223 ConfirmInfoBarDelegate* infobar_0 =
240 ConfirmInfoBarDelegate* infobar_1 =
283 ConfirmInfoBarDelegate* infobar_0 =
297 ConfirmInfoBarDelegate* infobar_1 =
352 ConfirmInfoBarDelegate* removed_infobar =
356 ConfirmInfoBarDelegate* infobar_0 =
395 ConfirmInfoBarDelegate* removed_infobar =
399 ConfirmInfoBarDelegate* infobar_0 =
418 ConfirmInfoBarDelegate* infobar_1 =
452 ConfirmInfoBarDelegate* infobar_0
    [all...]

Completed in 1178 milliseconds

1 2