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

  /external/chromium_org/components/infobars/core/
infobar_container.h 12 #include "components/infobars/core/infobar_manager.h"
15 namespace infobars { namespace
20 // related aspects of InfoBars. While InfoBarManager owns the InfoBars, the
21 // InfoBarContainer is responsible for telling particular InfoBars that they
48 // Changes the InfoBarManager 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_manager|, and show them all. |infobar_manager|
83 // infobars (which will call the pure virtual functions below) while the
94 // until the translate infobar is implemented as three different infobars lik
    [all...]
infobar_manager.h 12 #include "components/infobars/core/infobar_delegate.h"
18 namespace infobars { namespace
46 // If infobars are disabled for this tab or the tab already has an infobar
57 // If infobars are disabled for this tab, this will do nothing, on the
62 // Removes all the infobars.
68 // If infobars are disabled for this tab, |new_infobar| is deleted immediately
77 // Returns the number of infobars for this tab.
103 // InfoBars associated with this InfoBarManager. We own these pointers.
104 // However, this is not a ScopedVector, because we don't delete the infobars
108 typedef std::vector<InfoBar*> InfoBars;
    [all...]
infobar_container.cc 5 #include "components/infobars/core/infobar_container.h"
11 #include "components/infobars/core/infobar.h"
12 #include "components/infobars/core/infobar_delegate.h"
15 namespace infobars { namespace
27 // RemoveAllInfoBarsForDestruction() should have already cleared our infobars.
37 // Hides all infobars in this container without animation.
51 // As when we removed the infobars above, we prevent callbacks to
62 // Our |total_height| is the sum of the preferred heights of the InfoBars
67 for (InfoBars::const_iterator i(infobars_.begin()); i != infobars_.end();
98 InfoBars::iterator i(std::find(infobars_.begin(), infobars_.end(), infobar))
    [all...]
infobar_manager.cc 5 #include "components/infobars/core/infobar_manager.h"
8 #include "components/infobars/core/infobar.h"
9 #include "components/infobars/core/infobars_switches.h"
11 namespace infobars { namespace
38 for (InfoBars::const_iterator i(infobars_.begin()); i != infobars_.end();
71 InfoBars::iterator i(std::find(infobars_.begin(), infobars_.end(),
108 // Destroy all remaining InfoBars. It's important to not animate here so that
142 InfoBars::iterator i(std::find(infobars_.begin(), infobars_.end(), infobar));
156 } // namespace infobars

Completed in 2954 milliseconds