HomeSort by relevance Sort by last modified time
    Searched defs:bubble (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium/chrome/browser/ui/views/
pinned_contents_info_bubble.cc 7 #include "chrome/browser/ui/views/bubble/bubble_border.h"
27 true, // Don't move the bubble around if it does not fit on the screen.
30 // Now move the y position to make sure the bubble contents overlap the view.
34 // Bubble -----------------------------------------------------------------
44 PinnedContentsInfoBubble* bubble = local
46 bubble->InitBubble(parent, position_relative_to, arrow_location,
48 return bubble;
first_run_bubble.cc 32 // How much extra padding to put around our content over what the Bubble
36 // How much extra padding to put around our content over what the Bubble
37 // provides in alternative OEM bubble.
50 // first run bubble. It is a dialog-ish view, but is not a true dialog.
465 // No buttons in minimal bubble to register focus changes.
477 FirstRunBubble* bubble = new FirstRunBubble(); local
482 view = new FirstRunOEMBubbleView(bubble, profile);
485 view = new FirstRunBubbleView(bubble, profile);
488 view = new FirstRunMinimalBubbleView(bubble, profile);
493 bubble->set_view(view)
    [all...]
page_info_bubble_view.cc 11 #include "chrome/browser/ui/views/bubble/bubble.h"
40 // The duration of the animation that resizes the bubble once the async
85 Bubble* PageInfoBubbleView::bubble_ = NULL;
213 void PageInfoBubbleView::BubbleClosing(Bubble* bubble, bool closed_by_escape) {
231 // We want to make sure the info bubble closes once the link is activated. So
356 // Find where to point the bubble at.
371 // Show the bubble. If the bubble already exist - it will be closed first
374 Bubble* bubble = local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/
confirm_bubble_views_unittest.cc 19 // Create parent widget, as confirm bubble must have an owner.
26 // Bubble owns the model.
30 ConfirmBubbleViews* bubble = new ConfirmBubbleViews(model); local
32 CreateBrowserModalDialogViews(bubble, parent)->Show();
35 bubble->GetWidget()->CloseNow();
network_profile_bubble_view.cc 25 // Bubble layout constants.
38 NetworkProfileBubbleView* bubble = local
40 views::BubbleDelegateView::CreateBubble(bubble)->Show();
43 // Mark the time of the last bubble and reduce the number of warnings left
136 // If the user interacted with the bubble we don't reduce the number of
  /external/chromium/chrome/browser/ui/cocoa/
base_bubble_controller.h 16 // Base class for bubble controllers. Manages a xib that contains an
18 // the bubble window on clicks outside of the window, and the like.
38 @property(nonatomic, readonly) InfoBubbleView* bubble; variable
40 // Creates a bubble. |nibPath| is just the basename, e.g. @"FirstRunBubble".
42 // bubble visible. It will autorelease itself when the user dismisses the
43 // bubble.
50 // Creates a bubble. |nibPath| is just the basename, e.g. @"FirstRunBubble".
51 // |view| must be in a window. The bubble will point at |offset| relative to
53 // bubble visible. It will autorelease itself when the user dismisses the
54 // bubble
    [all...]
  /external/chromium/chrome/browser/ui/views/frame/
browser_bubble_host.cc 15 // Do safe iteration in case the bubble winds up closing as a result of this
19 BubbleSet::iterator bubble = i++; local
20 (*bubble)->BrowserWindowMoved();
24 void BrowserBubbleHost::AttachBrowserBubble(BrowserBubble* bubble) {
25 DCHECK(browser_bubbles_.find(bubble) == browser_bubbles_.end()) <<
27 browser_bubbles_.insert(bubble);
30 void BrowserBubbleHost::DetachBrowserBubble(BrowserBubble* bubble) {
31 BubbleSet::iterator it = browser_bubbles_.find(bubble);
39 // BrowserWindowClosing will usually cause the bubble to remove itself from
43 BubbleSet::iterator bubble = i++ local
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
message_bubble.cc 30 : Bubble(type, false), // don't show while screen is locked
114 // The bubble will be destroyed when it is closed.
115 MessageBubble* bubble = new MessageBubble( local
117 bubble->InitBubble(parent, position_relative_to, arrow_location,
118 bubble->text_->parent(), delegate);
119 return bubble;
131 // The bubble will be destroyed when it is closed.
132 MessageBubble* bubble = new MessageBubble( local
134 bubble->InitBubble(parent, position_relative_to, arrow_location,
135 bubble->text_->parent(), delegate)
    [all...]
  /external/chromium_org/ash/shell/
bubble.cc 6 #include "ui/views/bubble/bubble_border.h"
7 #include "ui/views/bubble/bubble_delegate.h"
42 ExampleBubbleDelegateView* bubble = new ExampleBubbleDelegateView(config); local
43 views::BubbleDelegateView::CreateBubble(bubble)->Show();
  /external/chromium_org/chrome/browser/ui/cocoa/
base_bubble_controller.h 12 // Base class for bubble controllers. Manages a xib that contains an
14 // the bubble window on clicks outside of the window, and the like.
32 // A local event tap that will dismiss the bubble when a click is delivered
44 // The point in base screen coordinates at which the bubble should open and the
47 @property(nonatomic, readonly) InfoBubbleView* bubble; variable
50 // Creates a bubble. |nibPath| is just the basename, e.g. @"FirstRunBubble".
52 // bubble visible. It will autorelease itself when the user dismisses the
53 // bubble.
60 // Creates a bubble. |nibPath| is just the basename, e.g. @"FirstRunBubble".
61 // |view| must be in a window. The bubble will point at |offset| relative t
    [all...]
  /external/chromium_org/chrome/browser/ui/global_error/
global_error_service.cc 30 GlobalErrorBubbleViewBase* bubble = error->GetBubbleView(); local
31 if (bubble)
32 bubble->CloseBubbleView();
  /external/chromium_org/chrome/browser/ui/gtk/
confirm_bubble_gtk_browsertest.cc 39 ConfirmBubbleGtk* bubble() const { return bubble_; } function in class:ConfirmBubbleGtkTest
69 bubble()->OnCancelButton(NULL);
79 bubble()->OnLinkButton(NULL);
89 bubble()->OnOkButton(NULL);
confirm_bubble_gtk.cc 27 // Padding between content and edge of bubble.
58 void ConfirmBubbleGtk::BubbleClosing(BubbleGtk* bubble,
133 // Show a bubble consisting of the above widgets under the anchor point.
186 ConfirmBubbleGtk* bubble = new ConfirmBubbleGtk(view, origin, model); local
187 bubble->Show();
  /external/chromium_org/ui/views/examples/
bubble_example.cc 8 #include "ui/views/bubble/bubble_delegate.h"
66 BubbleExample::BubbleExample() : ExampleBase("Bubble") {}
100 ExampleBubble* bubble = new ExampleBubble(sender, arrow); local
101 bubble->set_color(colors[(color_index++) % arraysize(colors)]);
104 bubble->set_shadow(BubbleBorder::SHADOW);
106 bubble->set_shadow(BubbleBorder::NO_SHADOW);
108 bubble->set_shadow(BubbleBorder::BIG_SHADOW);
110 bubble->set_shadow(BubbleBorder::SMALL_SHADOW);
113 bubble->set_close_on_deactivate(false);
114 bubble->set_move_with_anchor(true)
    [all...]
  /external/chromium_org/ash/wm/gestures/
tray_gesture_handler.cc 27 SystemTrayBubble* bubble = tray->GetSystemBubble(); local
28 if (!bubble)
30 bubble->bubble_view()->set_gesture_dragging(true);
31 widget_ = bubble->bubble_view()->GetWidget();
96 SystemTrayBubble* bubble = local
98 if (bubble)
99 bubble->bubble_view()->set_gesture_dragging(false);
  /external/chromium_org/chrome/browser/ui/gtk/bubble/
bubble_gtk_browsertest.cc 11 #include "chrome/browser/ui/gtk/bubble/bubble_gtk.h"
27 virtual void BubbleClosing(BubbleGtk* bubble,
45 // Tests that we can adjust a bubble arrow so we can show a bubble without being
47 // 1. Shows a bubble to the top-left corner and see its frame style always
49 // 2. Shows a bubble to the top-right corner and see its frame style always
51 // 3. Shows a bubble to the bottom-left corner and see its frame style always
53 // 4. Shows a bubble to the top-left corner and see its frame style always
83 BubbleGtk* bubble = BubbleGtk::Show(anchor, local
92 EXPECT_EQ(points[i].expected, bubble->actual_frame_style_)
124 BubbleGtk* bubble = BubbleGtk::Show(anchor, local
    [all...]
  /external/chromium/chrome/browser/speech/
speech_input_bubble_controller.cc 44 SpeechInputBubble* bubble = SpeechInputBubble::Create(tab_contents, this, local
46 if (!bubble) // could be null if tab or display rect were invalid.
49 bubbles_[caller_id] = bubble;
97 // At least one other bubble exists for the same TabContents. So don't
149 // The bubble may have been closed before we got a chance to process this
162 SpeechInputBubble* bubble = bubbles_[caller_id]; local
165 bubble->SetWarmUpMode();
168 bubble->SetRecordingMode();
171 bubble->SetRecognizingMode();
174 bubble->SetMessage(text)
    [all...]
  /external/chromium_org/chrome/browser/ui/autofill/
new_credit_card_bubble_controller.cc 94 bubble() { function in class:autofill::NewCreditCardBubbleController
120 // TODO(dbeam): Make a bubble on all applicable platforms.
generated_credit_card_bubble_controller.cc 65 // bubble is showing. Always calling |Hide()| ensures that the bubble closes.
149 GeneratedCreditCardBubbleController::bubble() { function in class:autofill::GeneratedCreditCardBubbleController
210 // card bubble.
231 // TODO(dbeam): Make a bubble on all applicable platforms.
238 // If the bubble was an automatically created "you generated a card" bubble,
  /external/chromium_org/chrome/browser/ui/views/autofill/
new_credit_card_bubble_views.cc 14 #include "ui/views/bubble/bubble_frame_view.h"
26 // Get the view this bubble will be anchored to via |controller|.
46 // This bubble doesn't render correctly on Windows without calling
108 NewCreditCardBubbleViews* bubble = new NewCreditCardBubbleViews(controller); local
109 return bubble->weak_ptr_factory_.GetWeakPtr();
  /external/chromium/chrome/browser/ui/views/bubble/
bubble.cc 5 #include "chrome/browser/ui/views/bubble/bubble.h"
9 #include "chrome/browser/ui/views/bubble/border_contents.h"
26 #include "chrome/browser/ui/views/bubble/border_widget_win.h"
34 // Background color of the bubble.
36 const SkColor Bubble::kBackgroundColor =
40 const SkColor Bubble::kBackgroundColor = SK_ColorWHITE;
49 // Bubble -----------------------------------------------------------------
52 Bubble* Bubble::Show(views::Widget* parent
57 Bubble* bubble = new Bubble; local
72 Bubble* bubble = new Bubble(views::WidgetGtk::TYPE_POPUP, local
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
single_client_bookmarks_sync_test.cc 87 // -> Seattle Bubble
123 const BookmarkNode* bubble = AddURL( local
124 0, bar, bar->child_count(), L"Seattle Bubble",
126 ASSERT_TRUE(bubble != NULL);
  /external/chromium/chrome/browser/ui/gtk/
info_bubble_gtk.cc 57 InfoBubbleGtk* bubble = new InfoBubbleGtk(provider, match_system_theme); local
58 bubble->Init(anchor_widget, rect, content, arrow_location, grab_input);
59 bubble->set_delegate(delegate);
60 return bubble;
95 // If there is a current grab widget (menu, other info bubble, etc.), hide it.
116 // Attach all of the accelerators to the bubble.
426 // Forward the accelerator to root window the bubble is anchored
  /external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_bubble_view.cc 18 #include "chrome/browser/ui/views/bubble/bubble.h"
47 // Minimum width for the fields - they will push out the size of the bubble if
49 // of the bubble far enough so that the edit button's left edge is to the right
53 // Bubble close image.
97 Bubble* bubble = Bubble::Show( local
100 // |bubble_| can be set to NULL in BubbleClosing when we close the bubble
102 // window loses activation while we are getting to ready to show the bubble,
    [all...]
  /external/chromium/chrome/browser/ui/views/extensions/
extension_installed_bubble.cc 40 // The Bubble uses a BubbleBorder which adds about 6 pixels of whitespace
147 void set_bubble(Bubble* bubble) { bubble_ = bubble; }
219 // title text and bubble arrow.
223 // The Bubble showing us.
224 Bubble* bubble_;
263 // to wait on showing the Bubble until not only the EXTENSION_LOADED gets
316 // install bubble to the chevron instead. If this is an incognito window,
356 Bubble* bubble = Bubble::Show(browser_view->GetWidget(), bounds local
    [all...]

Completed in 318 milliseconds

1 2