Searched defs:infobar (Results 1 - 25 of 55) sorted by relevance

123

/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
H A DMessageInfoBar.java5 package org.chromium.chrome.browser.infobar;
9 * A simple infobar that contains a message and a close icon on the right side.
18 * Creates an infobar with a message and a close button.
19 * @param title the text displayed in the infobar
26 * Creates an infobar with an icon, a message and a close button.
27 * @param listener A listener to be notified when the infobar is dismissed, or null.
28 * @param iconResourceId The icon to display in the infobar, or 0 if no icon should be shown.
29 * @param title The text to display in the infobar.
H A DSubPanelListener.java4 package org.chromium.chrome.browser.infobar;
7 * A listener to interact with the different subpanels of the translate infobar.
H A DAutoLoginProcessor.java5 package org.chromium.chrome.browser.infobar;
H A DConfirmInfoBarDelegate.java5 package org.chromium.chrome.browser.infobar;
H A DDataReductionProxyInfoBarDelegate.java5 package org.chromium.chrome.browser.infobar;
H A DInfoBarListeners.java5 package org.chromium.chrome.browser.infobar;
8 * A collection of listeners for different infobar events.
13 * Called whenever an infobar is dismissed, either manually or as a side
14 * effect of a navigation, replacing the infobar...
22 * Called whenever an infobar's confirm or cancel button is clicked.
H A DInfoBarView.java5 package org.chromium.chrome.browser.infobar;
H A DTranslateAlwaysPanel.java4 package org.chromium.chrome.browser.infobar;
11 * Options panel shown in the after translate infobar.
H A DTranslateCheckBox.java4 package org.chromium.chrome.browser.infobar;
H A DTranslateNeverPanel.java4 package org.chromium.chrome.browser.infobar;
11 * Never panel shown in the translate infobar
H A DTranslateSubPanel.java5 package org.chromium.chrome.browser.infobar;
10 * Interface to group the different sub panels of the translate infobar.
H A DSavePasswordInfoBar.java5 package org.chromium.chrome.browser.infobar;
12 * The infobar that allows saving passwords for autofill.
H A DSavePasswordInfoBarDelegate.java5 package org.chromium.chrome.browser.infobar;
45 * @param nativeInfoBar The native infobar pointer.
H A DAutoLoginAccountDelegate.java5 package org.chromium.chrome.browser.infobar;
H A DAutoLoginDelegate.java5 package org.chromium.chrome.browser.infobar;
H A DConfirmInfoBar.java5 package org.chromium.chrome.browser.infobar;
8 * An infobar that presents the user with several buttons.
H A DDataReductionProxyInfoBar.java5 package org.chromium.chrome.browser.infobar;
H A DTranslateInfoBarDelegate.java5 package org.chromium.chrome.browser.infobar;
/external/chromium_org/chrome/browser/ui/startup/
H A Dsession_crashed_infobar_delegate_unittest.cc19 #include "components/infobars/core/infobar.h"
56 // Attach the crashed infobar to it.
65 ConfirmInfoBarDelegate* infobar = local
67 ASSERT_TRUE(infobar);
88 infobar->Accept();
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/infobar/
H A DInfoBarTest.java5 package org.chromium.chrome.browser.infobar;
61 assertEquals("Wrong infobar count", 1, infoBars.size());
66 assertEquals("Wrong infobar count", 0, infoBars.size());
68 // A second load should not show the infobar.
85 assertEquals("Wrong infobar count", 1, infoBars.size());
92 assertTrue("Wrong infobar count", infoBars.isEmpty());
108 assertEquals("Wrong infobar count", 1, infoBars.size());
/external/chromium_org/chrome/browser/ui/cocoa/infobars/
H A Dinfobar_controller.h19 // A controller for an infobar in the browser window. There is one
20 // controller per infobar view. The base InfoBarController is able to
46 @property(nonatomic, readonly) InfoBarCocoa* infobar; variable
48 // Initializes a new InfoBarController and takes a WeakPtr to |infobar|.
49 - (id)initWithInfoBar:(InfoBarCocoa*)infobar;
51 // Returns YES if the infobar is owned. If this is NO, it is not safe to call
62 // Called when someone clicks on the close button. Dismisses the infobar
64 // NOTE: Subclasses should not call this to close the infobar as it will lead to
68 // Asks the container controller to remove the infobar for this delegate. This
69 // call will trigger a notification that starts the infobar animatin
[all...]
/external/chromium_org/chrome/browser/ui/views/infobars/
H A Dinfobar_background.cc8 #include "components/infobars/core/infobar.h"
40 InfoBarView* infobar = static_cast<InfoBarView*>(view); local
42 canvas_skia->drawPath(infobar->fill_path(), paint);
52 canvas_skia->drawPath(infobar->stroke_path(), paint);
H A Dinfobar_container_view.cc56 infobars::InfoBar* infobar,
58 AddChildViewAt(static_cast<InfoBarView*>(infobar),
63 infobars::InfoBar* infobar) {
64 RemoveChildView(static_cast<InfoBarView*>(infobar));
55 PlatformSpecificAddInfoBar( infobars::InfoBar* infobar, size_t position) argument
62 PlatformSpecificRemoveInfoBar( infobars::InfoBar* infobar) argument
/external/chromium_org/components/google/core/browser/
H A Dgoogle_url_tracker_map_entry.cc8 #include "components/infobars/core/infobar.h"
31 // Transfer ownership of |navigation_helper_| to the infobar delegate as the
32 // infobar delegate has need of it after this object has been destroyed in
51 void GoogleURLTrackerMapEntry::OnInfoBarRemoved(infobars::InfoBar* infobar, argument
54 if (infobar->delegate() == infobar_delegate_) {
/external/chromium_org/chrome/browser/ui/android/infobars/
H A Dinfobar_container_android.cc13 #include "components/infobars/core/infobar.h"
37 infobars::InfoBar* infobar,
39 DCHECK(infobar);
40 InfoBarAndroid* android_bar = static_cast<InfoBarAndroid*>(infobar);
45 NOTIMPLEMENTED() << "CLANK: infobar type "
46 << infobar->delegate()->GetInfoBarType();
50 if (infobar->delegate()->AsAutoLoginInfoBarDelegate()) {
53 infobar->delegate()->AsAutoLoginInfoBarDelegate());
80 infobars::InfoBar* infobar) {
81 InfoBarAndroid* android_infobar = static_cast<InfoBarAndroid*>(infobar);
36 PlatformSpecificAddInfoBar( infobars::InfoBar* infobar, size_t position) argument
79 PlatformSpecificRemoveInfoBar( infobars::InfoBar* infobar) argument
[all...]

Completed in 274 milliseconds

123