HomeSort by relevance Sort by last modified time
    Searched refs:InfoBars (Results 1 - 6 of 6) sorted by null

  /external/chromium/chrome/browser/ui/views/infobars/
infobar_container.h 21 // related aspects of InfoBars. While InfoBars own themselves, the
22 // InfoBarContainer is responsible for telling particular InfoBars that they
49 // Changes the TabContents for which this container is showing infobars. This
50 // will remove all current infobars from the container, add the infobars from
89 // infobars (which will call the pure virtual functions below) while the
99 typedef std::vector<InfoBar*> InfoBars;
127 InfoBars infobars_;
infobar_container.cc 5 #include "chrome/browser/ui/views/infobars/infobar_container.h"
8 #include "chrome/browser/ui/views/infobars/infobar.h"
24 // RemoveAllInfoBarsForDestruction() should have already cleared our infobars.
53 // As when we removed the infobars above, we prevent callbacks to
65 // Our |total_height| is the sum of the preferred heights of the InfoBars
70 for (InfoBars::iterator i(infobars_.begin()); i != infobars_.end(); ++i) {
101 InfoBars::iterator infobar_iterator(std::find(infobars_.begin(),
151 for (InfoBars::iterator i(infobars_.begin()); i != infobars_.end(); ++i) {
  /external/chromium_org/chrome/browser/infobars/
infobar_container.h 20 // related aspects of InfoBars. While InfoBarService owns the InfoBars, the
21 // InfoBarContainer is responsible for telling particular InfoBars that they
48 // Changes the InfoBarService for which this container is showing infobars.
49 // This will hide all current infobars, remove them from the container, add
50 // the infobars from |infobar_service|, and show them all. |infobar_service|
83 // infobars (which will call the pure virtual functions below) while the
94 // until the translate infobar is implemented as three different infobars like
102 typedef std::vector<InfoBar*> InfoBars;
109 // Hides all infobars in this container without animation
    [all...]
infobar_service.h 21 // Changes whether infobars are enabled. The default is true.
26 // If infobars are disabled for this tab or the tab already has an infobar
37 // If infobars are disabled for this tab, this will do nothing, on the
45 // If infobars are disabled for this tab, |new_infobar| is deleted immediately
54 // Returns the number of infobars for this tab.
71 // InfoBars associated with this InfoBarService. We own these pointers.
72 // However, this is not a ScopedVector, because we don't delete the infobars
76 typedef std::vector<InfoBar*> InfoBars;
96 InfoBars infobars_;
infobar_service.cc 5 #include "chrome/browser/infobars/infobar_service.h"
8 #include "chrome/browser/infobars/infobar.h"
9 #include "chrome/browser/infobars/infobar_delegate.h"
10 #include "chrome/browser/infobars/insecure_content_infobar_delegate.h"
24 for (InfoBars::const_iterator i(infobars_.begin()); i != infobars_.end();
54 InfoBars::iterator i(std::find(infobars_.begin(), infobars_.end(),
83 // Destroy all remaining InfoBars. It's important to not animate here so that
106 // ourselves lest other parts of the system attempt to add infobars or use
132 InfoBars::iterator i(std::find(infobars_.begin(), infobars_.end(), infobar));
infobar_container.cc 7 #include "chrome/browser/infobars/infobar_container.h"
13 #include "chrome/browser/infobars/infobar.h"
14 #include "chrome/browser/infobars/infobar_delegate.h"
15 #include "chrome/browser/infobars/infobar_service.h"
30 // RemoveAllInfoBarsForDestruction() should have already cleared our infobars.
48 // As when we removed the infobars above, we prevent callbacks to
59 // Our |total_height| is the sum of the preferred heights of the InfoBars
64 for (InfoBars::iterator i(infobars_.begin()); i != infobars_.end(); ++i) {
94 InfoBars::iterator i(std::find(infobars_.begin(), infobars_.end(), infobar));
133 InfoBars::const_iterator i(std::find(infobars_.begin(), infobars_.end()
    [all...]

Completed in 657 milliseconds