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

1 2 3 4 5

  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
SubPanelListener.java 4 package org.chromium.chrome.browser.infobar;
7 * A listener to interact with the different subpanels of the translate infobar.
13 * @param action one of the action types in {@code InfoBar}
AutoLoginProcessor.java 5 package 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);
InfoBarView.java 5 package org.chromium.chrome.browser.infobar;
9 * Functions needed to display an InfoBar UI.
13 * Prepares the InfoBar for display and adds InfoBar-specific controls to the layout.
TranslateSubPanel.java 5 package org.chromium.chrome.browser.infobar;
10 * Interface to group the different sub panels of the translate infobar.
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...]
  /external/chromium_org/components/infobars/core/
infobar_manager.cc 8 #include "components/infobars/core/infobar.h"
16 void InfoBarManager::Observer::OnInfoBarAdded(InfoBar* infobar) {
19 void InfoBarManager::Observer::OnInfoBarRemoved(InfoBar* infobar,
23 void InfoBarManager::Observer::OnInfoBarReplaced(InfoBar* old_infobar,
24 InfoBar* new_infobar) {
33 InfoBar* InfoBarManager::AddInfoBar(scoped_ptr<InfoBar> infobar) {
120 InfoBar* infobar = infobars_[i - 1]; local
    [all...]
infobar_container.cc 11 #include "components/infobars/core/infobar.h"
23 top_arrow_target_height_(InfoBar::kDefaultArrowTargetHeight) {
39 InfoBar* infobar = infobars_.front(); local
40 // Inform the infobar that it's hidden. If it was already closing, this
41 // deletes it. Otherwise, this ensures the infobar will be deleted if it's
43 infobar->Hide(false);
52 // OnInfoBarStateChanged() for each infobar.
69 InfoBar* infobar = *i local
    [all...]
infobar_manager.h 20 class InfoBar;
26 // Observer class for infobar events.
29 virtual void OnInfoBarAdded(InfoBar* infobar);
30 virtual void OnInfoBarRemoved(InfoBar* infobar, bool animate);
31 virtual void OnInfoBarReplaced(InfoBar* old_infobar,
32 InfoBar* new_infobar);
44 // Adds the specified |infobar|, which already owns a delegate.
46 // If infobars are disabled for this tab or the tab already has an infobar
    [all...]
infobar_container.h 17 class InfoBar;
33 // The delegate is notified each time the infobar container changes height,
59 // Called by the delegate when the distance between what the top infobar's
60 // "unspoofable" arrow would point to and the top infobar itself changes.
61 // This enables the top infobar to show a longer arrow (e.g. because of a
70 // Called when a contained infobar has animated or by some other means changed
75 // Called by |infobar| to request that it be removed from the container. At
76 // this point, |infobar| should already be hidden.
77 void RemoveInfoBar(InfoBar* infobar);
    [all...]
  /external/chromium_org/chrome/browser/translate/
translate_manager_render_view_host_unittest.cc 30 #include "components/infobars/core/infobar.h"
153 // Returns the translate infobar if there is 1 infobar and it is a translate
154 // infobar.
162 // If there is 1 infobar and it is a translate infobar, closes it and returns
165 infobars::InfoBarDelegate* infobar = GetTranslateInfoBar(); local
166 if (!infobar)
168 infobar->InfoBarDismissed(); // Simulates closing the infobar
189 translate::TranslateInfoBarDelegate* infobar = GetTranslateInfoBar(); local
416 translate::TranslateInfoBarDelegate* infobar = GetTranslateInfoBar(); local
499 translate::TranslateInfoBarDelegate* infobar = GetTranslateInfoBar(); local
541 translate::TranslateInfoBarDelegate* infobar = GetTranslateInfoBar(); local
615 translate::TranslateInfoBarDelegate* infobar = GetTranslateInfoBar(); local
748 translate::TranslateInfoBarDelegate* infobar = GetTranslateInfoBar(); local
941 translate::TranslateInfoBarDelegate* infobar = GetTranslateInfoBar(); local
972 translate::TranslateInfoBarDelegate* infobar = GetTranslateInfoBar(); local
1014 translate::TranslateInfoBarDelegate* infobar = GetTranslateInfoBar(); local
1124 translate::TranslateInfoBarDelegate* infobar = GetTranslateInfoBar(); local
1280 translate::TranslateInfoBarDelegate* infobar = GetTranslateInfoBar(); local
1357 translate::TranslateInfoBarDelegate* infobar = GetTranslateInfoBar(); local
1448 translate::TranslateInfoBarDelegate* infobar; local
1540 translate::TranslateInfoBarDelegate* infobar = GetTranslateInfoBar(); local
1588 translate::TranslateInfoBarDelegate* infobar = GetTranslateInfoBar(); local
1631 translate::TranslateInfoBarDelegate* infobar = GetTranslateInfoBar(); local
1674 translate::TranslateInfoBarDelegate* infobar = GetTranslateInfoBar(); local
    [all...]
  /external/chromium_org/chrome/browser/autofill/
autofill_cc_infobar_delegate_unittest.cc 106 // Test that credit card infobar metrics are logged correctly.
111 // Accept the infobar.
113 scoped_ptr<ConfirmInfoBarDelegate> infobar(CreateDelegate(&metric_logger));
114 ASSERT_TRUE(infobar);
122 EXPECT_TRUE(infobar->Accept());
125 // Cancel the infobar.
127 scoped_ptr<ConfirmInfoBarDelegate> infobar(CreateDelegate(&metric_logger));
128 ASSERT_TRUE(infobar);
135 EXPECT_TRUE(infobar->Cancel());
138 // Dismiss the infobar
    [all...]
  /external/chromium_org/chrome/browser/ui/android/infobars/
infobar_container_android.cc 13 #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());
73 infobars::InfoBar* old_infobar
    [all...]
auto_login_infobar_delegate_android.cc 15 #include "components/infobars/core/infobar.h"
69 // Do not close the infobar on accept, it will be closed as part
89 if (!infobar()->owner())
95 InfoBarService::WebContentsFromInfoBar(infobar());
97 infobar()->RemoveSelf();
106 if (!infobar()->owner())
110 // infobar while we animate the current one closed. It would be better to use
113 InfoBarService::WebContentsFromInfoBar(infobar()));
118 infobar()->RemoveSelf();
122 infobar()->RemoveSelf()
    [all...]
infobar_container_android.h 42 virtual void PlatformSpecificAddInfoBar(infobars::InfoBar* infobar,
44 virtual void PlatformSpecificRemoveInfoBar(infobars::InfoBar* infobar)
47 infobars::InfoBar* old_infobar,
48 infobars::InfoBar* new_infobar) OVERRIDE;
54 // We're owned by the java infobar, need to use a weak ref so it can destroy
  /external/chromium_org/chrome/browser/ui/cocoa/infobars/
infobar_container_cocoa.h 22 virtual void PlatformSpecificAddInfoBar(infobars::InfoBar* infobar,
25 infobars::InfoBar* infobar) OVERRIDE;
  /external/chromium_org/chrome/browser/ui/views/infobars/
infobar_container_view.h 28 virtual void PlatformSpecificAddInfoBar(infobars::InfoBar* infobar,
31 infobars::InfoBar* infobar) OVERRIDE;
infobar_container_view.cc 56 infobars::InfoBar* infobar,
58 AddChildViewAt(static_cast<InfoBarView*>(infobar),
63 infobars::InfoBar* infobar) {
64 RemoveChildView(static_cast<InfoBarView*>(infobar));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
sourcesView.css 100 .source-frame-infobar {
108 .source-frame-infobar-info {
112 .source-frame-infobar-warning,
113 .source-frame-infobar-error {
117 .source-frame-infobar {
119 -webkit-animation: source-frame-infobar-reveal 0.1s;
122 @-webkit-keyframes source-frame-infobar-reveal {
127 .source-frame-infobar-icon {
137 .source-frame-infobar-info .source-frame-infobar-icon
    [all...]
  /external/chromium_org/chrome/browser/infobars/
infobar_service.cc 11 #include "components/infobars/core/infobar.h"
19 using infobars::InfoBar;
53 content::WebContents* InfoBarService::WebContentsFromInfoBar(InfoBar* infobar) {
54 if (!infobar || !infobar->owner())
57 static_cast<InfoBarService*>(infobar->owner());
77 void InfoBarService::NotifyInfoBarAdded(InfoBar* infobar) {
78 InfoBarManager::NotifyInfoBarAdded(infobar);
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/
background.js 6 * Handles requests sent by the content script. Shows an infobar.
10 // infobar.
11 var url = "infobar.html#" + request.count;
13 // Show the infobar on the tab where the request was sent.
  /external/chromium_org/ui/accessibility/extensions/alt/
hide-images.css 48 body[show-alt] .show-alt-infobar {
58 body:not([show-alt]) .show-alt-infobar {
68 .show-alt-infobar {
85 .show-alt-infobar .content {
89 .show-alt-infobar span {
93 .show-alt-infobar button.link-button {
109 .show-alt-infobar button.link-button:hover,
110 .show-alt-infobar button.link-button:focus {
116 .show-alt-infobar .controls {
122 .show-alt-infobar .close-button-gray:hover
    [all...]
  /external/chromium_org/components/google/core/browser/
google_url_tracker_map_entry.cc 8 #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,
54 if (infobar->delegate() == infobar_delegate_) {
  /external/chromium_org/chrome/browser/ui/android/content_settings/
popup_blocked_infobar_delegate.cc 15 #include "components/infobars/core/infobar.h"
26 scoped_ptr<infobars::InfoBar> infobar(ConfirmInfoBarDelegate::CreateInfoBar(
32 // See if there is an existing popup infobar already.
33 // TODO(dfalcantara) When triggering more than one popup the infobar
35 // This will be fixed once we have an in place replace infobar mechanism.
37 infobars::InfoBar* existing_infobar = infobar_service->infobar_at(i);
39 infobar_service->ReplaceInfoBar(existing_infobar, infobar.Pass());
44 infobar_service->AddInfoBar(infobar.Pass());
97 InfoBarService::WebContentsFromInfoBar(infobar());
    [all...]
  /external/chromium_org/chrome/browser/ui/
hung_plugin_tab_helper.cc 19 #include "components/infobars/core/infobar.h"
132 // Creates a hung plugin infobar and delegate and adds the infobar to
133 // |infobar_service|. Returns the infobar if it was successfully added.
134 static infobars::InfoBar* Create(InfoBarService* infobar_service,
160 infobars::InfoBar* HungPluginInfoBarDelegate::Create(
214 // not we're currently showing the infobar.
223 // Possibly-null if we're not showing an infobar right now.
224 infobars::InfoBar* infobar; member in struct:HungPluginTabHelper::PluginState
328 infobars::InfoBar* infobar = local
    [all...]

Completed in 277 milliseconds

1 2 3 4 5