HomeSort by relevance Sort by last modified time
    Searched full:infobar (Results 1 - 25 of 365) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
InfoBarListeners.java 5 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...
17 void onInfoBarDismissed(InfoBar infoBar);
22 * Called whenever an infobar's confirm or cancel button is clicked.
25 ConfirmInfoBar infoBar, boolean confirm);
MessageInfoBar.java 5 package org.chromium.chrome.browser.infobar;
9 * A simple infobar that contains a message and a close icon on the right side.
13 * TODO(newt): merge this into InfoBar.java
15 public class MessageInfoBar extends InfoBar {
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
    [all...]
DataReductionProxyInfoBarDelegate.java 5 package org.chromium.chrome.browser.infobar;
16 * Launches the {@link InfoBar}.
17 * @param webContents The {@link WebContents} in which to launch the {@link InfoBar}.
33 * @param nativeInfoBar Pointer to the C++ InfoBar corresponding to the Java InfoBar.
34 * @param enumeratedIconId ID corresponding to the icon that will be shown for the InfoBar.
39 InfoBar showDataReductionProxyInfoBar(long nativeInfoBar, int enumeratedIconId) {
41 DataReductionProxyInfoBar infoBar = new DataReductionProxyInfoBar(
43 return infoBar;