/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/ |
UISourceCodeFrame.js | 179 * @param {!Array.<!WebInspector.UISourceCodeFrame.Infobar|undefined>} infobars 184 var infobar = infobars[i]; 185 if (!infobar) 187 this.element.insertBefore(infobar.element, this.element.children[0]); 188 infobar._attached(this); 205 * @param {!WebInspector.UISourceCodeFrame.Infobar.Level} level 208 WebInspector.UISourceCodeFrame.Infobar = function(level, message) 210 this.element = document.createElementWithClass("div", "source-frame-infobar source-frame-infobar-" + level); 211 this._mainRow = this.element.createChild("div", "source-frame-infobar-main-row") [all...] |
/external/chromium_org/chrome/browser/extensions/ |
extension_infobar_delegate.cc | 13 #include "components/infobars/core/infobar.h" 58 height_ = std::min(2 * infobars::InfoBar::kDefaultBarTargetHeight, height_); 60 height_ = infobars::InfoBar::kDefaultBarTargetHeight; 64 return InfoBarService::WebContentsFromInfoBar(infobar()); 74 // When an extension crashes, an InfoBar is shown (for the crashed extension). 76 // is already showing the 'extension crashed InfoBar', which it never is), but 82 // Only allow one InfoBar at a time per extension. 106 infobar()->RemoveSelf(); 116 infobar()->RemoveSelf();
|
/external/chromium_org/chrome/browser/media/ |
media_stream_infobar_delegate.cc | 14 #include "components/infobars/core/infobar.h" 49 // Deny the request if there is no place to show the infobar, e.g. when 55 scoped_ptr<infobars::InfoBar> infobar( 59 infobars::InfoBar* old_infobar = infobar_service->infobar_at(i); 61 infobar_service->ReplaceInfoBar(old_infobar, infobar.Pass()); 65 infobar_service->AddInfoBar(infobar.Pass()); 78 // Deny the request if the infobar was closed with the 'x' button, since 142 InfoBarService::WebContentsFromInfoBar(infobar())->OpenURL(
|
webrtc_browsertest_base.cc | 18 #include "components/infobars/core/infobar.h" 106 infobars::InfoBar* infobar = local 108 infobar->delegate()->AsConfirmInfoBarDelegate()->Accept(); 109 CloseInfoBarInTab(tab_contents, infobar); 125 infobars::InfoBar* infobar = local 127 infobar->delegate()->AsConfirmInfoBarDelegate()->Cancel(); 128 CloseInfoBarInTab(tab_contents, infobar); 138 infobars::InfoBar* infobar local 218 infobars::InfoBar* infobar = details.ptr(); local [all...] |
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 infobars::InfoBar* Create(InfoBarService* infobar_service,
|
/external/chromium_org/chrome/browser/geolocation/ |
geolocation_permission_context_unittest.cc | 27 #include "components/infobars/core/infobar.h" 67 bool Contains(infobars::InfoBar* infobar) const; 73 std::set<infobars::InfoBar*> removed_infobars_; 90 content::Details<infobars::InfoBar::RemovedDetails>(details)->first); 93 bool ClosedInfoBarTracker::Contains(infobars::InfoBar* infobar) const { 94 return removed_infobars_.count(infobar) != 0; 279 infobars::InfoBar* infobar = infobar_service()->infobar_at(0) local 410 infobars::InfoBar* infobar = infobar_service()->infobar_at(0); local 436 infobars::InfoBar* infobar = infobar_service()->infobar_at(0); local 648 infobars::InfoBar* infobar = infobar_service()->infobar_at(0); local 710 infobars::InfoBar* infobar = infobar_service()->infobar_at(0); local [all...] |
/external/chromium_org/chrome/browser/ui/ |
hung_plugin_tab_helper.h | 33 // - Pop up an infobar when a plugin is hung. 35 // - Periodically re-show the hung plugin infobar if the user closes it without 37 // - Hide the infobar if the plugin starts responding again. 58 // Called by an infobar when the user selects to kill the plugin. 73 // state accordingly. The plugin must not have an infobar already. 76 // Closes the infobar associated with the given state. Note that this can
|
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...] |
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/ |
TranslateInfoBarDelegate.java | 5 package org.chromium.chrome.browser.infobar; 31 InfoBar showTranslateInfoBar(
|
TranslateSubPanel.java | 5 package org.chromium.chrome.browser.infobar; 10 * Interface to group the different sub panels of the translate infobar.
|
ContentWrapperView.java | 5 package org.chromium.chrome.browser.infobar; 30 * Once an InfoBar has been hidden and removed from the InfoBarContainer, it cannot be reused 38 private final InfoBar mInfoBar; 47 public ContentWrapperView(Context context, InfoBar infoBar, View panel) { 50 mInfoBar = infoBar; 66 // Add the InfoBar content. 82 * Calculates how tall the InfoBar boundary should be in pixels. 92 * @return the current View representing the InfoBar. 96 // One of the Views will always be the InfoBar separator [all...] |
/external/chromium_org/chrome/browser/password_manager/ |
save_password_infobar_delegate.h | 23 // the user makes up their mind with the "save password" infobar. Note if the 26 // forms never end up in an infobar. 29 // If we won't be showing the one-click signin infobar, creates a save 30 // password infobar and delegate and adds the infobar to the InfoBarService 32 // "group_X" suffixes used in the histogram names for infobar usage reporting; 52 // Returns a save password infobar that owns |delegate|. 53 static scoped_ptr<infobars::InfoBar> CreateInfoBar(
|
/external/chromium_org/chrome/browser/ui/android/content_settings/ |
popup_blocked_infobar_delegate.h | 19 // Creates a popup blocked infobar and delegate and adds the infobar to
|
/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.
|
infobar_container_controller.mm | 17 #include "components/infobars/core/infobar.h" 88 - (void)addInfoBar:(InfoBarCocoa*)infobar 90 InfoBarController* controller = infobar->controller(); 102 - (void)removeInfoBar:(InfoBarCocoa*)infobar { 103 [infobar->controller() infobarWillHide]; 104 [self removeController:infobar->controller()]; 118 // last infobar and working our way to the front of the array. This 119 // way we ensure that the first infobar added shows up on top, with 127 frame.size.height = [controller infobar]->total_height(); 130 minY += NSHeight(frame) - [controller infobar]->arrow_height() [all...] |
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]); 263 scoped_ptr<infobars::InfoBar> ExtensionInfoBarDelegate::CreateInfoBar [all...] |
/external/chromium_org/chrome/browser/translate/ |
translate_browsertest.cc | 17 #include "components/infobars/core/infobar.h" 60 // local test server. Note that this flag shows a confirm infobar in tests. 86 ADD_FAILURE() << "infobar service is not available"; 92 // Check if the shown infobar is a confirm infobar coming from the 94 // This infobar appears in all tests of TranslateBrowserTest and can be 111 // Other infobar should not be shown. 134 // Check if there is no Translate infobar. 139 // Setup infobar observer. 140 content::WindowedNotificationObserver infobar( [all...] |
/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/components/translate/core/browser/ |
translate_infobar_delegate.h | 45 // Factory method to create a translate infobar. |error_type| must be 53 // If |replace_existing_infobar| is true, the infobar is created and added to 54 // the infobar manager, replacing any other translate infobar already present 55 // there. Otherwise, the infobar will only be added if there is no other 56 // translate infobar already present. 104 // Returns true if the current infobar indicates an error (in which case it 111 // via an infobar/bubble or preference. 116 // Returns what kind of background fading effect the infobar should use when 127 // infobar or pressing the "Don't translate" button [all...] |
/external/chromium_org/chrome/browser/supervised_user/ |
supervised_user_navigation_observer.h | 25 class InfoBar; 34 // Sets the specific infobar as dismissed. 68 infobars::InfoBar* warn_infobar_;
|
/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.
|
/external/chromium_org/components/google/core/browser/ |
google_url_tracker_map_entry.h | 34 // This object gives ownership of |navigation_helper_| to the infobar 50 virtual void OnInfoBarRemoved(infobars::InfoBar* infobar,
|
/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...] |