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

1 2 3

  /external/chromium/chrome/browser/tab_contents/
infobar_delegate.cc 13 // InfoBarDelegate ------------------------------------------------------------
15 InfoBarDelegate::~InfoBarDelegate() {
18 bool InfoBarDelegate::EqualsDelegate(InfoBarDelegate* delegate) const {
22 bool InfoBarDelegate::ShouldExpire(
29 void InfoBarDelegate::InfoBarDismissed() {
32 void InfoBarDelegate::InfoBarClosed() {
35 SkBitmap* InfoBarDelegate::GetIcon() const {
39 InfoBarDelegate::Type InfoBarDelegate::GetInfoBarType() const
    [all...]
infobar_delegate.h 30 // When creating your InfoBarDelegate subclass, it is recommended that you
38 // one does finally fully close InfoBarDelegate::InfoBarClosed() is called,
45 class InfoBarDelegate {
54 virtual ~InfoBarDelegate();
66 virtual bool EqualsDelegate(InfoBarDelegate* delegate) const;
101 explicit InfoBarDelegate(TabContents* contents);
104 // be used later upon navigation to determine if this InfoBarDelegate should
113 DISALLOW_COPY_AND_ASSIGN(InfoBarDelegate);
link_infobar_delegate.cc 14 : InfoBarDelegate(contents) {
confirm_infobar_delegate.cc 40 : InfoBarDelegate(contents) {
46 bool ConfirmInfoBarDelegate::EqualsDelegate(InfoBarDelegate* delegate) const {
confirm_infobar_delegate.h 14 // An interface derived from InfoBarDelegate implemented by objects wishing to
16 class ConfirmInfoBarDelegate : public InfoBarDelegate {
38 // InfoBarDelegate should be removed from the associated TabContents.
42 // the InfoBarDelegate should be removed from the associated TabContents.
62 // InfoBarDelegate:
64 virtual bool EqualsDelegate(InfoBarDelegate* delegate) const OVERRIDE;
link_infobar_delegate.h 16 // An interface derived from InfoBarDelegate implemented by objects wishing to
18 class LinkInfoBarDelegate : public InfoBarDelegate {
39 // InfoBarDelegate:
tab_contents_ssl_helper.cc 77 InfoBarDelegate::Type SSLCertAddedInfoBarDelegate::GetInfoBarType() const {
114 void ShowInfoBar(InfoBarDelegate* delegate);
127 InfoBarDelegate* infobar_delegate_;
145 InfoBarDelegate* delegate) {
163 typedef std::pair<InfoBarDelegate*, InfoBarDelegate*> InfoBarDelegatePair;
166 Details<InfoBarDelegate>(details).ptr() :
  /external/chromium/chrome/browser/ui/gtk/infobars/
infobar_container_gtk.h 15 class InfoBarDelegate;
34 // Remove the specified InfoBarDelegate from the selected TabContents. This
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);
infobar_gtk.h 23 class InfoBarDelegate;
29 explicit InfoBar(InfoBarDelegate* delegate);
32 InfoBarDelegate* delegate() const { return delegate_; }
81 virtual void GetTopColor(InfoBarDelegate::Type type,
83 virtual void GetBottomColor(InfoBarDelegate::Type type,
95 // Removes our associated InfoBarDelegate from the associated TabContents.
124 InfoBarDelegate* delegate_;
infobar_container_gtk.cc 31 InfoBarDelegate* delegate =
32 static_cast<InfoBarDelegate*>(info_bar_delegate);
48 InfoBarDelegate* delegate =
49 static_cast<InfoBarDelegate*>(info_bar_delegate);
108 void InfoBarContainerGtk::RemoveDelegate(InfoBarDelegate* delegate) {
124 AddInfoBar(Details<InfoBarDelegate>(details).ptr(), true);
126 RemoveInfoBar(Details<InfoBarDelegate>(details).ptr(), true);
128 std::pair<InfoBarDelegate*, InfoBarDelegate*>* delegates =
129 Details<std::pair<InfoBarDelegate*, InfoBarDelegate*> >(details).ptr()
    [all...]
translate_infobar_base_gtk.h 29 virtual void GetTopColor(InfoBarDelegate::Type type,
31 virtual void GetBottomColor(InfoBarDelegate::Type type,
translate_infobar_base_gtk.cc 70 void TranslateInfoBarBase::GetTopColor(InfoBarDelegate::Type type,
73 InfoBar::GetTopColor(InfoBarDelegate::PAGE_ACTION_TYPE, r, g, b);
75 InfoBar::GetTopColor(InfoBarDelegate::WARNING_TYPE, r, g, b);
78 InfoBar::GetTopColor(InfoBarDelegate::PAGE_ACTION_TYPE,
82 InfoBar::GetTopColor(InfoBarDelegate::WARNING_TYPE,
95 void TranslateInfoBarBase::GetBottomColor(InfoBarDelegate::Type type,
98 InfoBar::GetBottomColor(InfoBarDelegate::PAGE_ACTION_TYPE, r, g, b);
100 InfoBar::GetBottomColor(InfoBarDelegate::WARNING_TYPE, r, g, b);
103 InfoBar::GetBottomColor(InfoBarDelegate::PAGE_ACTION_TYPE,
107 InfoBar::GetBottomColor(InfoBarDelegate::WARNING_TYPE
    [all...]
infobar_gtk.cc 37 InfoBar::InfoBar(InfoBarDelegate* delegate)
204 void InfoBar::GetTopColor(InfoBarDelegate::Type type,
210 case InfoBarDelegate::WARNING_TYPE:
215 case InfoBarDelegate::PAGE_ACTION_TYPE:
223 void InfoBar::GetBottomColor(InfoBarDelegate::Type type,
226 case InfoBarDelegate::WARNING_TYPE:
231 case InfoBarDelegate::PAGE_ACTION_TYPE:
  /external/chromium/chrome/browser/ui/cocoa/infobars/
infobar_container_controller.h 17 class InfoBarDelegate;
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;
infobar_controller.h 13 class InfoBarDelegate;
36 InfoBarDelegate* delegate_; // weak, can be NULL
46 - (id)initWithDelegate:(InfoBarDelegate*)delegate;
85 @property(nonatomic, readonly) InfoBarDelegate* delegate;
90 // InfoBarController subclasses, one for each InfoBarDelegate
  /external/chromium/chrome/browser/ui/views/infobars/
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);
infobar.h 15 class InfoBarDelegate;
23 explicit InfoBar(InfoBarDelegate* delegate);
35 InfoBarDelegate* delegate() { return delegate_; }
99 InfoBarDelegate* delegate_;
infobar_background.cc 13 InfoBarBackground::InfoBarBackground(InfoBarDelegate::Type infobar_type)
22 SkColor InfoBarBackground::GetTopColor(InfoBarDelegate::Type infobar_type) {
28 return (infobar_type == InfoBarDelegate::WARNING_TYPE) ?
32 SkColor InfoBarBackground::GetBottomColor(InfoBarDelegate::Type infobar_type) {
38 return (infobar_type == InfoBarDelegate::WARNING_TYPE) ?
infobar_container.h 17 class InfoBarDelegate;
75 // Removes the specified InfoBarDelegate from the selected TabContents. This
78 void RemoveDelegate(InfoBarDelegate* delegate);
109 void RemoveInfoBar(InfoBarDelegate* delegate, bool use_animation);
infobar_container.cc 96 void InfoBarContainer::RemoveDelegate(InfoBarDelegate* delegate) {
123 AddInfoBar(Details<InfoBarDelegate>(details)->CreateInfoBar(), true,
128 RemoveInfoBar(Details<InfoBarDelegate>(details).ptr(), true);
132 typedef std::pair<InfoBarDelegate*, InfoBarDelegate*> InfoBarPair;
145 void InfoBarContainer::RemoveInfoBar(InfoBarDelegate* delegate,
  /external/chromium/chrome/browser/
plugin_observer.h 13 class InfoBarDelegate;
33 scoped_ptr<InfoBarDelegate> plugin_installer_; // Lazily created.
  /external/chromium/chrome/browser/extensions/
extension_infobar_delegate.h 16 // The InfobarDelegate for creating and managing state for the ExtensionInfobar
18 class ExtensionInfoBarDelegate : public InfoBarDelegate,
45 // InfoBarDelegate:
47 virtual bool EqualsDelegate(InfoBarDelegate* delegate) const;
extension_infobar_delegate.cc 21 : InfoBarDelegate(tab_contents),
42 bool ExtensionInfoBarDelegate::EqualsDelegate(InfoBarDelegate* delegate) const {
46 // That will result in a call to this function (to see if this InfoBarDelegate
66 InfoBarDelegate::Type ExtensionInfoBarDelegate::GetInfoBarType() const {
extension_install_ui.h 21 class InfoBarDelegate;
99 static InfoBarDelegate* GetNewThemeInstalledInfoBarDelegate(
  /external/chromium/chrome/browser/ui/
collected_cookies_infobar_delegate.cc 24 InfoBarDelegate::Type CollectedCookiesInfoBarDelegate::GetInfoBarType() const {

Completed in 223 milliseconds

1 2 3