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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
InfoBarView.java 5 package org.chromium.chrome.browser.infobar;
10 * Functions needed to display an InfoBar UI.
14 * Prepare the InfoBar for display and adding InfoBar-specific controls to the layout.
20 * Returns the message indicating what the InfoBar is informing or asking the user about.
TranslateInfoBar.java 5 package org.chromium.chrome.browser.infobar;
20 * Java version of the translate infobar
88 * Based on the infobar and the button pressed figure out what action needs to happen.
91 int action = InfoBar.ACTION_TYPE_NONE;
96 ? InfoBar.ACTION_TYPE_TRANSLATE : InfoBar.ACTION_TYPE_CANCEL;
100 action = InfoBar.ACTION_TYPE_TRANSLATE_SHOW_ORIGINAL;
105 action = InfoBar.ACTION_TYPE_TRANSLATE;
197 // Close the sub panel and show the infobar again.
201 // Apply options and close the infobar
    [all...]
  /external/chromium_org/chrome/browser/content_settings/
permission_queue_controller.cc 11 #include "chrome/browser/infobars/infobar.h"
54 InfoBar* infobar() { return infobar_; } function in class:PermissionQueueController::PendingInfoBarRequest
66 InfoBar* infobar_;
171 GetInfoBarService(id)->RemoveInfoBar(i->infobar());
199 // The infobar that called us is i->infobar(), and its delegate is
205 // This infobar is for the same frame/embedder pair, but in a different
210 // We haven't created an infobar yet, just remove the pending request.
221 GetInfoBarService(i->id())->RemoveInfoBar(i->infobar());
243 InfoBar* infobar = content::Details<InfoBar::RemovedDetails>(details)->first; local
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/infobars/
infobar_container_controller_unittest.mm 65 scoped_ptr<InfoBarCocoa> infobar(new InfoBarCocoa(confirm_delegate.Pass()));
67 [[ConfirmInfoBarController alloc] initWithInfoBar:infobar.get()]);
68 infobar->set_controller(controller);
69 [controller_ addInfoBar:infobar.get() position:0];
72 [controller_ removeInfoBar:infobar.get()];
infobar_utilities.mm 8 #import "chrome/browser/infobars/infobar.h"
46 // If the superview is the infobar view, then subtract out the anti-spoof
47 // height so that the content is centered in the content area of the infobar,
51 superHeight = InfoBar::kDefaultBarTargetHeight;
57 // Creates a label control in the style we need for the infobar's labels
infobar_container_controller.mm 10 #include "chrome/browser/infobars/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...]
infobar_gradient_view.mm 8 #include "chrome/browser/infobars/infobar.h"
39 SkColor topColor = InfoBar::GetTopColor(infobarType);
40 SkColor bottomColor = InfoBar::GetBottomColor(infobarType);
60 bounds.size.height = InfoBar::kDefaultBarTargetHeight;
64 // Around the bounds of the infobar, continue drawing the path into which the
79 // Save off the top path of the infobar.
93 // Stroke the bottom of the infobar.
confirm_infobar_controller_unittest.mm 78 if ([self infobar])
79 [self infobar]->CloseSoon();
155 // Check to make sure the infobar message was set properly.
159 // Check that dismissing the infobar deletes the delegate.
169 // the infobar.
181 // the infobar.
191 // the infobar.
203 // the infobar.
213 // delegate. It should also close the infobar.
225 // delegate. It should not close the infobar
    [all...]
confirm_infobar_controller.h 14 // Called when there is a click on the link in the infobar.
  /external/chromium_org/chrome/browser/ui/startup/
session_crashed_infobar_delegate_unittest.cc 10 #include "chrome/browser/infobars/infobar.h"
56 // Attach the crashed infobar to it.
65 ConfirmInfoBarDelegate* infobar = local
67 ASSERT_TRUE(infobar);
88 infobar->Accept();
  /external/chromium_org/chrome/browser/ui/gtk/infobars/
infobar_gtk.h 12 #include "chrome/browser/infobars/infobar.h"
29 class InfoBarGtk : public InfoBar,
39 // Get the top level native GTK widget for this infobar.
44 // Returns the target height of the infobar if the bar is animating,
51 // Retrieves the component colors for the infobar's background
62 // InfoBar:
87 // Returns the signal registrar for this infobar. All signals representing
103 // Adds |display_text| to the infobar. If |link_text| is not empty, it is
105 // or right aligned in the infobar if |link_offset| is |npos|. If a link is
128 // the infobar
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/infobars/
infobar_container_controller.h 33 // How tall the tip is on a normal infobar.
39 // Controller for the infobar container view, which is the superview
40 // of all the infobar views. This class owns zero or more
41 // InfoBarControllers, which manage the infobar views. This class
69 // |delegate| need to be removed. Does not remove any infobar views
72 // infobar was closed.
112 // Adds an infobar view for the given delegate.
115 // Closes all the infobar views for a given delegate, either immediately or by
125 // Positions the infobar views in the container view and notifies
134 // Removes all infobar views. Callers must cal
    [all...]
  /external/chromium_org/chrome/browser/custom_handlers/
register_protocol_handler_infobar_delegate.cc 9 #include "chrome/browser/infobars/infobar.h"
25 scoped_ptr<InfoBar> infobar(ConfirmInfoBarDelegate::CreateInfoBar(
30 InfoBar* existing_infobar = infobar_service->infobar_at(i);
36 infobar_service->ReplaceInfoBar(existing_infobar, infobar.Pass());
41 infobar_service->AddInfoBar(infobar.Pass());
  /external/chromium_org/chrome/browser/extensions/
theme_installed_infobar_delegate.h 25 // infobar allowing them to cancel.
29 // Creates a theme installed infobar and delegate and adds the infobar to the
  /external/chromium_org/chrome/browser/managed_mode/
managed_mode_navigation_observer.h 17 class InfoBar;
31 // Sets the specific infobar as dismissed.
71 InfoBar* warn_infobar_;
  /external/chromium_org/chrome/browser/media/
chrome_midi_permission_context.h 43 // or NotifyPermissionSet if permission decided by presenting an infobar.
66 // Return an instance of the infobar queue controller, creating it if needed.
69 // Removes any pending InfoBar request.
webrtc_browsertest_base.h 12 class InfoBar;
67 InfoBar* infobar) const;
68 InfoBar* GetUserMediaAndWaitForInfoBar(content::WebContents* tab_contents,
  /external/chromium_org/chrome/browser/
pepper_broker_infobar_delegate.h 21 // Shows an infobar that asks the user whether a Pepper plug-in is allowed
28 // broker infobar and delegate and adds the infobar to the InfoBarService
  /external/chromium_org/chrome/browser/ui/
auto_login_prompter.h 24 // This class displays an infobar that allows the user to automatically login to
33 // tries to display an infobar in the tab contents identified by the
59 // Add the infobar to the WebContents, if it's still needed.
  /external/chromium_org/chrome/browser/ui/views/infobars/
extension_infobar.h 45 // The infobar icon used for the extension infobar. The icon can be either a
48 // The icon is a dropdown menu if the extension showing the infobar shows
  /external/chromium/chrome/browser/download/
download_request_infobar_delegate_unittest.cc 20 ConfirmInfoBarDelegate* infobar() { function in class:MockTabDownloadState
35 // The actual infobar delegate we're listening to.
74 state.infobar()->Accept();
80 state.infobar()->Cancel();
  /external/chromium/chrome/browser/
pdf_unsupported_feature.h 14 // viewer doesn't support. Will take care of puting up an infobar to inform the
  /external/chromium/chrome/browser/tab_contents/
confirm_infobar_delegate.h 24 // Returns the message string to be displayed for the InfoBar.
27 // Return the buttons to be shown for this InfoBar.
51 // the link was clicked). This function returns true if the InfoBar should be
63 virtual InfoBar* CreateInfoBar() OVERRIDE;
  /external/chromium/chrome/browser/ui/gtk/infobars/
infobar_arrow_model.h 19 class InfoBar;
21 // A helper class that tracks the state of an infobar arrow and provides a
34 // An infobar has been added or removed that will affect the state of this
36 void ShowArrowFor(InfoBar* bar, bool animate);
  /external/chromium/chrome/common/
view_types.cc 10 const char* ViewType::kInfobar = "INFOBAR";

Completed in 1597 milliseconds

1 2 3 4 56 7 8 91011>>