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

1 2 3 4 5

  /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 19 // InfoBarDelegate ------------------------------------------------------------
21 const int InfoBarDelegate::kNoIconID = 0;
23 InfoBarDelegate::~InfoBarDelegate() {
26 InfoBarDelegate::InfoBarAutomationType
27 InfoBarDelegate::GetInfoBarAutomationType() const {
31 bool InfoBarDelegate::EqualsDelegate(InfoBarDelegate* delegate) const {
35 bool InfoBarDelegate::ShouldExpire(
43 void InfoBarDelegate::InfoBarDismissed()
    [all...]
confirm_infobar_delegate.cc 14 InfoBarDelegate::InfoBarAutomationType
49 : InfoBarDelegate() {
55 InfoBarDelegate::ShouldExpireInternal(details);
61 bool ConfirmInfoBarDelegate::EqualsDelegate(InfoBarDelegate* delegate) const {
infobar_delegate.h 35 class InfoBarDelegate {
56 virtual ~InfoBarDelegate();
66 virtual bool EqualsDelegate(InfoBarDelegate* delegate) const;
103 // later upon navigation to determine if this InfoBarDelegate should be
116 InfoBarDelegate();
133 DISALLOW_COPY_AND_ASSIGN(InfoBarDelegate);
infobar.h 21 // sense), which owns a corresponding InfoBarDelegate "model". Typically,
30 // destroying the InfoBarDelegate in the process.
32 // Thus, InfoBarDelegate and InfoBar implementations can assume they share
52 explicit InfoBar(scoped_ptr<InfoBarDelegate> delegate);
55 static SkColor GetTopColor(InfoBarDelegate::Type infobar_type);
56 static SkColor GetBottomColor(InfoBarDelegate::Type infobar_type);
59 InfoBarDelegate* delegate() { return delegate_.get(); }
60 const InfoBarDelegate* delegate() const { return delegate_.get(); }
133 scoped_ptr<InfoBarDelegate> delegate_;
confirm_infobar_delegate.h 14 // An interface derived from InfoBarDelegate implemented by objects wishing to
16 class ConfirmInfoBarDelegate : public InfoBarDelegate {
74 // InfoBarDelegate:
75 virtual bool EqualsDelegate(InfoBarDelegate* delegate) const OVERRIDE;
  /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,
  /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) ?
  /external/chromium/chrome/browser/
plugin_observer.h 13 class InfoBarDelegate;
33 scoped_ptr<InfoBarDelegate> plugin_installer_; // Lazily created.
  /external/chromium_org/chrome/browser/ui/views/infobars/
infobar_background.h 14 explicit InfoBarBackground(InfoBarDelegate::Type infobar_type);
  /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;
  /external/chromium_org/chrome/browser/ui/android/infobars/
infobar_android.h 16 class InfoBarDelegate;
34 explicit InfoBarAndroid(scoped_ptr<InfoBarDelegate> delegate);
  /external/chromium_org/chrome/browser/ui/gtk/infobars/
extension_infobar_gtk.h 29 virtual void GetTopColor(InfoBarDelegate::Type type,
31 virtual void GetBottomColor(InfoBarDelegate::Type type,

Completed in 1443 milliseconds

1 2 3 4 5