/external/chromium/chrome/browser/tab_contents/ |
D | infobar_delegate.cc | 15 InfoBarDelegate::~InfoBarDelegate() { in ~InfoBarDelegate() 18 bool InfoBarDelegate::EqualsDelegate(InfoBarDelegate* delegate) const { in EqualsDelegate() 22 bool InfoBarDelegate::ShouldExpire( in ShouldExpire() 29 void InfoBarDelegate::InfoBarDismissed() { in InfoBarDismissed() 32 void InfoBarDelegate::InfoBarClosed() { in InfoBarClosed() 35 SkBitmap* InfoBarDelegate::GetIcon() const { in GetIcon() 39 InfoBarDelegate::Type InfoBarDelegate::GetInfoBarType() const { in GetInfoBarType() 43 ConfirmInfoBarDelegate* InfoBarDelegate::AsConfirmInfoBarDelegate() { in AsConfirmInfoBarDelegate() 47 ExtensionInfoBarDelegate* InfoBarDelegate::AsExtensionInfoBarDelegate() { in AsExtensionInfoBarDelegate() 51 LinkInfoBarDelegate* InfoBarDelegate::AsLinkInfoBarDelegate() { in AsLinkInfoBarDelegate() [all …]
|
D | infobar_delegate.h | 45 class InfoBarDelegate { 54 virtual ~InfoBarDelegate(); 66 virtual bool EqualsDelegate(InfoBarDelegate* delegate) const; 101 explicit InfoBarDelegate(TabContents* contents); 113 DISALLOW_COPY_AND_ASSIGN(InfoBarDelegate);
|
D | tab_contents_ssl_helper.cc | 77 InfoBarDelegate::Type SSLCertAddedInfoBarDelegate::GetInfoBarType() const { in GetInfoBarType() 114 void ShowInfoBar(InfoBarDelegate* delegate); 127 InfoBarDelegate* infobar_delegate_; 145 InfoBarDelegate* delegate) { in ShowInfoBar() 163 typedef std::pair<InfoBarDelegate*, InfoBarDelegate*> InfoBarDelegatePair; in Observe() 166 Details<InfoBarDelegate>(details).ptr() : in Observe()
|
D | confirm_infobar_delegate.cc | 40 : InfoBarDelegate(contents) { in ConfirmInfoBarDelegate() 46 bool ConfirmInfoBarDelegate::EqualsDelegate(InfoBarDelegate* delegate) const { in EqualsDelegate()
|
D | confirm_infobar_delegate.h | 16 class ConfirmInfoBarDelegate : public InfoBarDelegate { 64 virtual bool EqualsDelegate(InfoBarDelegate* delegate) const OVERRIDE;
|
/external/chromium/chrome/browser/ui/gtk/infobars/ |
D | infobar_container_gtk.cc | 31 InfoBarDelegate* delegate = in AnimateClosingForDelegate() 32 static_cast<InfoBarDelegate*>(info_bar_delegate); in AnimateClosingForDelegate() 48 InfoBarDelegate* delegate = in ClosingForDelegate() 49 static_cast<InfoBarDelegate*>(info_bar_delegate); in ClosingForDelegate() 108 void InfoBarContainerGtk::RemoveDelegate(InfoBarDelegate* delegate) { in RemoveDelegate() 124 AddInfoBar(Details<InfoBarDelegate>(details).ptr(), true); in Observe() 126 RemoveInfoBar(Details<InfoBarDelegate>(details).ptr(), true); in Observe() 128 std::pair<InfoBarDelegate*, InfoBarDelegate*>* delegates = in Observe() 129 Details<std::pair<InfoBarDelegate*, InfoBarDelegate*> >(details).ptr(); in Observe() 143 InfoBarDelegate* delegate = tab_contents_->GetInfoBarDelegateAt(i); in UpdateInfoBars() [all …]
|
D | infobar_gtk.h | 23 class InfoBarDelegate; variable 29 explicit InfoBar(InfoBarDelegate* delegate); 32 InfoBarDelegate* delegate() const { return delegate_; } in delegate() 81 virtual void GetTopColor(InfoBarDelegate::Type type, 83 virtual void GetBottomColor(InfoBarDelegate::Type type, 124 InfoBarDelegate* delegate_;
|
D | infobar_container_gtk.h | 15 class InfoBarDelegate; variable 37 void RemoveDelegate(InfoBarDelegate* delegate); 56 void ShowArrowForDelegate(InfoBarDelegate* delegate, bool animate); 60 void AddInfoBar(InfoBarDelegate* delegate, bool animate); 65 void RemoveInfoBar(InfoBarDelegate* delegate, bool animate);
|
D | translate_infobar_base_gtk.cc | 70 void TranslateInfoBarBase::GetTopColor(InfoBarDelegate::Type type, in GetTopColor() 73 InfoBar::GetTopColor(InfoBarDelegate::PAGE_ACTION_TYPE, r, g, b); in GetTopColor() 75 InfoBar::GetTopColor(InfoBarDelegate::WARNING_TYPE, r, g, b); in GetTopColor() 78 InfoBar::GetTopColor(InfoBarDelegate::PAGE_ACTION_TYPE, in GetTopColor() 82 InfoBar::GetTopColor(InfoBarDelegate::WARNING_TYPE, in GetTopColor() 95 void TranslateInfoBarBase::GetBottomColor(InfoBarDelegate::Type type, in GetBottomColor() 98 InfoBar::GetBottomColor(InfoBarDelegate::PAGE_ACTION_TYPE, r, g, b); in GetBottomColor() 100 InfoBar::GetBottomColor(InfoBarDelegate::WARNING_TYPE, r, g, b); in GetBottomColor() 103 InfoBar::GetBottomColor(InfoBarDelegate::PAGE_ACTION_TYPE, in GetBottomColor() 107 InfoBar::GetBottomColor(InfoBarDelegate::WARNING_TYPE, in GetBottomColor()
|
D | infobar_gtk.cc | 37 InfoBar::InfoBar(InfoBarDelegate* delegate) in InfoBar() 204 void InfoBar::GetTopColor(InfoBarDelegate::Type type, in GetTopColor() 210 case InfoBarDelegate::WARNING_TYPE: in GetTopColor() 215 case InfoBarDelegate::PAGE_ACTION_TYPE: in GetTopColor() 223 void InfoBar::GetBottomColor(InfoBarDelegate::Type type, in GetBottomColor() 226 case InfoBarDelegate::WARNING_TYPE: in GetBottomColor() 231 case InfoBarDelegate::PAGE_ACTION_TYPE: in GetBottomColor()
|
D | translate_infobar_base_gtk.h | 29 virtual void GetTopColor(InfoBarDelegate::Type type, 31 virtual void GetBottomColor(InfoBarDelegate::Type type,
|
/external/chromium/chrome/browser/ui/cocoa/infobars/ |
D | infobar_container_controller.h | 17 class InfoBarDelegate; variable 25 - (void)removeDelegate:(InfoBarDelegate*)delegate; 73 - (void)removeDelegate:(InfoBarDelegate*)delegate; 113 - (void)addInfoBar:(InfoBarDelegate*)delegate animate:(BOOL)animate; 117 - (void)closeInfoBarsForDelegate:(InfoBarDelegate*)delegate 122 - (void)replaceInfoBarsForDelegate:(InfoBarDelegate*)old_delegate 123 with:(InfoBarDelegate*)new_delegate;
|
D | infobar_controller.h | 13 class InfoBarDelegate; variable 36 InfoBarDelegate* delegate_; // weak, can be NULL 46 - (id)initWithDelegate:(InfoBarDelegate*)delegate; 85 @property(nonatomic, readonly) InfoBarDelegate* delegate;
|
D | infobar_container_controller.mm | 33 [controller_ addInfoBar:Details<InfoBarDelegate>(details).ptr() 38 closeInfoBarsForDelegate:Details<InfoBarDelegate>(details).ptr() 42 typedef std::pair<InfoBarDelegate*, InfoBarDelegate*> 100 - (void)removeDelegate:(InfoBarDelegate*)delegate { argument 182 - (void)addInfoBar:(InfoBarDelegate*)delegate animate:(BOOL)animate { argument 196 - (void)closeInfoBarsForDelegate:(InfoBarDelegate*)delegate 210 - (void)replaceInfoBarsForDelegate:(InfoBarDelegate*)old_delegate argument 211 with:(InfoBarDelegate*)new_delegate { argument
|
/external/chromium/chrome/browser/ui/views/infobars/ |
D | infobar_background.cc | 13 InfoBarBackground::InfoBarBackground(InfoBarDelegate::Type infobar_type) in InfoBarBackground() 22 SkColor InfoBarBackground::GetTopColor(InfoBarDelegate::Type infobar_type) { in GetTopColor() 28 return (infobar_type == InfoBarDelegate::WARNING_TYPE) ? in GetTopColor() 32 SkColor InfoBarBackground::GetBottomColor(InfoBarDelegate::Type infobar_type) { in GetBottomColor() 38 return (infobar_type == InfoBarDelegate::WARNING_TYPE) ? in GetBottomColor()
|
D | infobar.h | 15 class InfoBarDelegate; variable 23 explicit InfoBar(InfoBarDelegate* delegate); 35 InfoBarDelegate* delegate() { return delegate_; } in delegate() 99 InfoBarDelegate* delegate_;
|
D | infobar_container.cc | 96 void InfoBarContainer::RemoveDelegate(InfoBarDelegate* delegate) { in RemoveDelegate() 123 AddInfoBar(Details<InfoBarDelegate>(details)->CreateInfoBar(), true, in Observe() 128 RemoveInfoBar(Details<InfoBarDelegate>(details).ptr(), true); in Observe() 132 typedef std::pair<InfoBarDelegate*, InfoBarDelegate*> InfoBarPair; in Observe() 145 void InfoBarContainer::RemoveInfoBar(InfoBarDelegate* delegate, in RemoveInfoBar()
|
D | infobar_background.h | 14 explicit InfoBarBackground(InfoBarDelegate::Type infobar_type); 18 static SkColor GetTopColor(InfoBarDelegate::Type infobar_type); 19 static SkColor GetBottomColor(InfoBarDelegate::Type infobar_type);
|
D | infobar_container.h | 17 class InfoBarDelegate; variable 78 void RemoveDelegate(InfoBarDelegate* delegate); 109 void RemoveInfoBar(InfoBarDelegate* delegate, bool use_animation);
|
/external/chromium/chrome/browser/extensions/ |
D | extension_infobar_delegate.cc | 21 : InfoBarDelegate(tab_contents), in ExtensionInfoBarDelegate() 42 bool ExtensionInfoBarDelegate::EqualsDelegate(InfoBarDelegate* delegate) const { in EqualsDelegate() 66 InfoBarDelegate::Type ExtensionInfoBarDelegate::GetInfoBarType() const { in GetInfoBarType()
|
D | extension_install_ui.cc | 237 InfoBarDelegate* old_delegate = NULL; in ShowThemeInfoBar() 239 InfoBarDelegate* delegate = tab_contents->GetInfoBarDelegateAt(i); in ShowThemeInfoBar() 254 InfoBarDelegate* new_delegate = GetNewThemeInstalledInfoBarDelegate( in ShowThemeInfoBar() 274 InfoBarDelegate* ExtensionInstallUI::GetNewThemeInstalledInfoBarDelegate( in GetNewThemeInstalledInfoBarDelegate()
|
D | extension_infobar_delegate.h | 18 class ExtensionInfoBarDelegate : public InfoBarDelegate, 47 virtual bool EqualsDelegate(InfoBarDelegate* delegate) const;
|
D | extension_install_ui.h | 21 class InfoBarDelegate; variable 99 static InfoBarDelegate* GetNewThemeInstalledInfoBarDelegate(
|
/external/chromium/chrome/browser/ |
D | plugin_observer.h | 13 class InfoBarDelegate; variable 33 scoped_ptr<InfoBarDelegate> plugin_installer_; // Lazily created.
|
/external/chromium/chrome/browser/google/ |
D | google_url_tracker.h | 87 typedef InfoBarDelegate* (*InfobarCreator)(TabContents*, 155 InfoBarDelegate* infobar_;
|