HomeSort by relevance Sort by last modified time
    Searched full:infobar (Results 101 - 125 of 518) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/cocoa/infobars/
extension_infobar_controller.h 23 // The InfoBar's button with the Extension's icon that launches the context
31 // Helper class to bridge C++ and ObjC functionality together for the infobar.
infobar_gradient_view.h 13 // A custom view that draws the background gradient for an infobar.
27 // Sets the infobar type. This will change the view's gradient.
alternate_nav_infobar_controller.h 11 // Called when there is a click on the link in the infobar.
extension_infobar_controller.mm 49 // Sets the image to be used in the button on the left side of the infobar.
83 // TODO(andybons): The infobar view implementations share a lot of the same
131 - (id)initWithInfoBar:(InfoBarCocoa*)infobar {
132 if ((self = [super initWithInfoBar:infobar])) {
160 // InfoBar and make sure to place it below the Close button.
184 // back to a tab with an extension infobar within it. The reason this is
189 [self infobar]->SetBarTargetHeight([self clampedExtensionViewHeight]);
195 // the parent infobar view matches the height of the extension's native view.
221 [self infobar]->SetBarTargetHeight([self clampedExtensionViewHeight]);
249 [self infobar]->OwnerCocoa()->web_contents())
    [all...]
  /external/chromium_org/chrome/browser/translate/
translate_browsertest.cc 10 #include "chrome/browser/infobars/infobar.h"
58 // local test server. Note that this flag shows a confirm infobar in tests.
84 ADD_FAILURE() << "infobar service is not available";
90 // Check if the shown infobar is a confirm infobar coming from the
92 // This infobar appears in all tests of TranslateBrowserTest and can be
107 // Other infobar should not be shown.
132 // Check if there is no Translate infobar.
136 // Setup infobar observer.
137 content::WindowedNotificationObserver infobar(
    [all...]
translate_infobar_delegate.cc 13 #include "chrome/browser/infobars/infobar.h"
49 // infobar, which is the case when the user started a translation from the
56 // Do not create the after translate infobar if we are auto translating.
66 // Find any existing translate infobar delegate.
67 InfoBar* old_infobar = NULL;
82 scoped_ptr<InfoBar> infobar(CreateInfoBar(
87 infobar_service->ReplaceInfoBar(old_infobar, infobar.Pass());
89 infobar_service->AddInfoBar(infobar.Pass());
109 infobar()->RemoveSelf()
    [all...]
  /external/chromium/chrome/browser/autofill/
autofill_cc_infobar_delegate.h 23 // An InfoBar delegate that enables the user to allow or deny storing credit
51 // The credit card that should be saved if the user accepts the infobar.
59 // Weak reference. Owned by the AutofillManager that initiated this infobar.
62 // Did the user ever explicitly accept or dismiss this infobar?
  /external/chromium/chrome/browser/extensions/
extension_infobar_delegate.h 46 virtual InfoBar* CreateInfoBar();
58 // The extension host we are showing the InfoBar for. The delegate needs to
59 // own this since the InfoBar gets deleted and recreated when you switch tabs
60 // and come back (and we don't want the user's interaction with the InfoBar to
extension_infobar_module_constants.h 5 // Constants used for the InfoBar API.
  /external/chromium/chrome/browser/ui/cocoa/infobars/
infobar_gradient_view.h 13 // A custom view that draws the background gradient for an infobar.
infobar_controller_unittest.mm 35 // infobar completely when finished. For unittesting purposes, we create a mock
123 // Check that dismissing the infobar calls InfoBarClosed() on the delegate.
131 // delegate. It should also close the infobar.
141 // delegate. It should not close the infobar.
162 // Check to make sure the infobar message was set properly.
166 // Check that dismissing the infobar calls InfoBarClosed() on the delegate.
176 // the infobar.
188 // the infobar.
198 // the infobar.
210 // the infobar
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/
manifest.json 4 "description" : "Shows an infobar on pages which contain the word 'sandwich'",
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
ContentWrapperView.java 5 package org.chromium.chrome.browser.infobar;
31 * Once an InfoBar has been hidden and removed from the InfoBarContainer, it cannot be reused
40 private final InfoBar mInfoBar;
49 public ContentWrapperView(Context context, InfoBar infoBar, int backgroundType, View panel,
53 mInfoBar = infoBar;
60 if (backgroundType == InfoBar.BACKGROUND_TYPE_WARNING) {
78 // Add the InfoBar content.
94 * Calculates how tall the InfoBar boundary should be in pixels.
104 * @return the current View representing the InfoBar
    [all...]
TranslateNeverPanel.java 4 package org.chromium.chrome.browser.infobar;
12 * Never panel shown in the translate infobar
45 mListener.onPanelClosed(InfoBar.ACTION_TYPE_NONE);
AutoLoginDelegate.java 5 package org.chromium.chrome.browser.infobar;
79 long infoBar = mAccountHelper.first;
82 nativeLoginDismiss(infoBar);
88 nativeLoginSuccess(infoBar, result);
90 nativeLoginFailed(infoBar);
ConfirmInfoBar.java 5 package org.chromium.chrome.browser.infobar;
15 * An infobar that presents the user with 2 buttons (typically OK, Cancel).
61 // Construct text to be displayed on the infobar.
98 int action = isPrimaryButton ? InfoBar.ACTION_TYPE_OK : InfoBar.ACTION_TYPE_CANCEL;
  /external/chromium_org/chrome/browser/geolocation/
chrome_geolocation_permission_context_unittest.cc 21 #include "chrome/browser/infobars/infobar.h"
59 bool Contains(InfoBar* infobar) const;
65 std::set<InfoBar*> removed_infobars_;
82 content::Details<InfoBar::RemovedDetails>(details)->first);
85 bool ClosedInfoBarTracker::Contains(InfoBar* infobar) const {
86 return removed_infobars_.count(infobar) != 0;
261 InfoBar* infobar = infobar_service()->infobar_at(0) local
408 InfoBar* infobar = infobar_service()->infobar_at(0); local
434 InfoBar* infobar = infobar_service()->infobar_at(0); local
640 InfoBar* infobar = infobar_service()->infobar_at(0); local
    [all...]
  /external/chromium_org/chrome/browser/media/
midi_permission_infobar_delegate.h 25 // Creates a MIDI permission infobar and delegate and adds the infobar to
26 // |infobar_service|. Returns the infobar if it was successfully added.
27 static InfoBar* Create(InfoBarService* infobar_service,
protected_media_identifier_infobar_delegate.h 22 // Creates a protected media identifier infobar and delegate and adds the
23 // infobar to |infobar_service|. Returns the infobar if it was successfully
25 static InfoBar* Create(InfoBarService* infobar_service,
  /external/chromium_org/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/
manifest.json 4 "description" : "Shows an infobar on pages which contain the word 'sandwich'",
  /external/chromium_org/chrome_frame/infobars/
infobar_content.h 10 // Provides an interface between content to be displayed in an infobar and the
11 // infobar facility. Pass an instance of your implementation to
15 // The instance will be deleted by the infobar facility when it is no longer
28 // Initiates closing of the infobar.
  /external/chromium_org/chrome/browser/ui/
hung_plugin_tab_helper.cc 15 #include "chrome/browser/infobars/infobar.h"
133 // Creates a hung plugin infobar and delegate and adds the infobar to
134 // |infobar_service|. Returns the infobar if it was successfully added.
135 static InfoBar* Create(InfoBarService* infobar_service,
161 InfoBar* HungPluginInfoBarDelegate::Create(InfoBarService* infobar_service,
214 // not we're currently showing the infobar.
223 // Possibly-null if we're not showing an infobar right now.
224 InfoBar* infobar; member in struct:HungPluginTabHelper::PluginState
328 InfoBar* infobar = content::Details<InfoBar::RemovedDetails>(details)->first; local
    [all...]
  /external/chromium/chrome/browser/tab_contents/
link_infobar_delegate.h 20 // Returns the message string to be displayed in the InfoBar. |link_offset|
29 // the link was clicked). This function returns true if the InfoBar should be
40 virtual InfoBar* CreateInfoBar() OVERRIDE;
  /external/chromium_org/chrome/browser/password_manager/
password_manager_delegate.h 29 // A mechanism to show an infobar in the current tab at our request.
30 // The infobar may not show in some circumstances, such as when the one-click
31 // sign in infobar is or will be shown.
  /external/chromium_org/chrome/browser/ui/sync/
one_click_signin_histogram.h 12 // The infobar was shown to the user.
21 // The user pressed the X button to dismiss the infobar this time.
28 // The user clicked on the learn more link in the infobar.

Completed in 182 milliseconds

1 2 3 45 6 7 8 91011>>