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

1 2 3 4 5 6

  /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:
  /external/chromium_org/chrome/browser/infobars/
infobar_delegate.cc 18 // InfoBarDelegate ------------------------------------------------------------
20 const int InfoBarDelegate::kNoIconID = 0;
22 InfoBarDelegate::~InfoBarDelegate() {
25 InfoBarDelegate::InfoBarAutomationType
26 InfoBarDelegate::GetInfoBarAutomationType() const {
30 bool InfoBarDelegate::EqualsDelegate(InfoBarDelegate* delegate) const {
34 bool InfoBarDelegate::ShouldExpire(
42 void InfoBarDelegate::InfoBarDismissed()
    [all...]
infobar_service.h 16 class InfoBarDelegate;
30 // which returns true for InfoBarDelegate::EqualsDelegate(delegate),
34 InfoBarDelegate* AddInfoBar(scoped_ptr<InfoBarDelegate> infobar);
41 void RemoveInfoBar(InfoBarDelegate* infobar);
51 InfoBarDelegate* ReplaceInfoBar(InfoBarDelegate* old_infobar,
52 scoped_ptr<InfoBarDelegate> new_infobar);
61 InfoBarDelegate* infobar_at(size_t index) { return infobars_[index]; }
71 typedef std::vector<InfoBarDelegate*> InfoBars
    [all...]
infobar.h 21 SkColor GetInfoBarTopColor(InfoBarDelegate::Type infobar_type);
22 SkColor GetInfoBarBottomColor(InfoBarDelegate::Type infobar_type);
25 typedef InfoBarDelegate InfoBarAddedDetails;
26 typedef std::pair<InfoBarDelegate*, bool> InfoBarRemovedDetails;
27 typedef std::pair<InfoBarDelegate*, InfoBarDelegate*> InfoBarReplacedDetails;
37 InfoBar(InfoBarService* owner, InfoBarDelegate* delegate);
50 InfoBarDelegate* delegate() { return delegate_; }
122 InfoBarDelegate* delegate_;
confirm_infobar_delegate.cc 14 InfoBarDelegate::InfoBarAutomationType
49 : InfoBarDelegate(infobar_service) {
55 InfoBarDelegate::ShouldExpireInternal(details);
61 bool ConfirmInfoBarDelegate::EqualsDelegate(InfoBarDelegate* delegate) const {
infobar_delegate.h 34 class InfoBarDelegate {
53 virtual ~InfoBarDelegate();
72 virtual bool EqualsDelegate(InfoBarDelegate* delegate) const;
116 explicit InfoBarDelegate(InfoBarService* owner);
119 // later upon navigation to determine if this InfoBarDelegate should be
141 DISALLOW_COPY_AND_ASSIGN(InfoBarDelegate);
confirm_infobar_delegate.h 13 // An interface derived from InfoBarDelegate implemented by objects wishing to
15 class ConfirmInfoBarDelegate : public InfoBarDelegate {
69 // InfoBarDelegate:
71 virtual bool EqualsDelegate(InfoBarDelegate* delegate) const OVERRIDE;
  /external/chromium_org/chrome/browser/ui/cocoa/infobars/
infobar.h 17 // exists solely to be the return value for InfoBarDelegate::CreateInfoBar(),
35 InfoBar(InfoBarController* controller, InfoBarDelegate* delegate)
45 InfoBarDelegate* delegate() {
52 InfoBarDelegate* delegate_;
  /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...]
  /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_;
  /external/chromium/chrome/browser/
plugin_observer.h 13 class InfoBarDelegate;
33 scoped_ptr<InfoBarDelegate> plugin_installer_; // Lazily created.
  /external/chromium_org/chrome/browser/ui/omnibox/
alternate_nav_infobar_delegate.cc 18 infobar_service->AddInfoBar(scoped_ptr<InfoBarDelegate>(
25 : InfoBarDelegate(owner),
60 InfoBarDelegate::Type AlternateNavInfoBarDelegate::GetInfoBarType() const {
  /external/chromium_org/chrome/browser/ui/
collected_cookies_infobar_delegate.cc 17 infobar_service->AddInfoBar(scoped_ptr<InfoBarDelegate>(
33 InfoBarDelegate::Type CollectedCookiesInfoBarDelegate::GetInfoBarType() const {
  /external/chromium_org/chrome/browser/ui/content_settings/
media_setting_changed_infobar_delegate.cc 17 infobar_service->AddInfoBar(scoped_ptr<InfoBarDelegate>(
33 InfoBarDelegate::Type
  /external/chromium_org/chrome/browser/ui/website_settings/
website_settings_infobar_delegate.cc 18 infobar_service->AddInfoBar(scoped_ptr<InfoBarDelegate>(
34 InfoBarDelegate::Type WebsiteSettingsInfoBarDelegate::GetInfoBarType() const {

Completed in 2853 milliseconds

1 2 3 4 5 6