HomeSort by relevance Sort by last modified time
    Searched defs:InfoBar (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/components/infobars/core/
infobar.cc 5 #include "components/infobars/core/infobar.h"
17 InfoBar::InfoBar(scoped_ptr<InfoBarDelegate> delegate)
32 InfoBar::~InfoBar() {
37 SkColor InfoBar::GetTopColor(InfoBarDelegate::Type infobar_type) {
47 SkColor InfoBar::GetBottomColor(InfoBarDelegate::Type infobar_type) {
56 void InfoBar::SetOwner(InfoBarManager* owner) {
63 void InfoBar::Show(bool animate) {
73 void InfoBar::Hide(bool animate)
    [all...]
infobar.h 22 // InfoBar is a cross-platform base class for an infobar "view" (in the MVC
26 // create a platform-specific subclass of InfoBar to own it, and then call
27 // InfoBarManager::AddInfoBar() to give it ownership of the infobar.
28 // During its life, the InfoBar may be shown and hidden as the owning tab is
30 // will instruct the InfoBar to close itself. At this point, the InfoBar will
34 // Thus, InfoBarDelegate and InfoBar implementations can assume they share
37 class InfoBar : public gfx::AnimationDelegate {
39 // These are the types passed as Details for infobar-related notifications
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
InfoBar.java 5 package org.chromium.chrome.browser.infobar;
16 * The base class for all InfoBar classes.
18 * Make sure to use setExpireOnNavigation(false) if you want an infobar to be sticky.
20 public abstract class InfoBar implements InfoBarView {
21 private static final String TAG = "InfoBar";
24 * Possible labels of all the infobar buttons.
31 // Confirm infobar
35 // Translate infobar
64 * @param listener Listens to when buttons have been clicked on the InfoBar.
66 * @param message The message to show in the infobar
    [all...]

Completed in 99 milliseconds