Home
last modified time | relevance | path

Searched refs:bubble (Results 1 – 25 of 184) sorted by relevance

12345678

/external/chromium_org/ui/login/
Dbubble.css5 * Css based bubble.
8 .bubble {
20 .bubble::before {
28 .bubble-top::before {
33 html[dir=ltr] .bubble-top::before {
37 html[dir=rtl] .bubble-top::before {
41 html[dir=ltr] .bubble-right::before,
42 html[dir=rtl] .bubble-left::before {
48 .bubble-bottom::before {
53 html[dir=ltr] .bubble-bottom::before {
[all …]
/external/chromium_org/ui/webui/resources/css/
Dbubble.css5 .bubble {
13 .bubble-content {
23 * bubble. */
24 .bubble-close:not([hidden]) ~ .bubble-content {
28 .bubble-close {
37 html[dir='rtl'] .bubble-close {
42 .bubble-close {
48 .bubble-close:hover {
54 .bubble-close:active {
60 .bubble-shadow {
[all …]
Dexpandable_bubble.css5 .expandable-bubble {
19 .expandable-bubble::after {
29 .expandable-bubble > .expandable-bubble-contents > .expandable-bubble-title {
37 .expandable-bubble[masked] > .expandable-bubble-contents >
38 .expandable-bubble-title::after {
49 .expandable-bubble[expanded] > .expandable-bubble-contents >
50 .expandable-bubble-title {
56 .expandable-bubble-close {
65 .expandable-bubble[expanded] {
67 z-index: 3; /* One higher then the close button on an unexpanded bubble. */
[all …]
/external/chromium_org/chrome/browser/resources/chromeos/first_run/
Dbubble.css7 .bubble .arrow {
17 .bubble .arrow.points-up {
22 .bubble .arrow.points-right {
27 .bubble .arrow.points-down {
32 .bubble .arrow.points-left {
37 .bubble .arrow.top {
41 .bubble .arrow.right {
45 .bubble .arrow.bottom {
49 .bubble .arrow.left {
Dstep_bubble.css7 .step.bubble {
16 .step.bubble h1 {
24 .step.bubble p {
30 .step.bubble p + p {
34 .step.bubble .controls {
42 .step.bubble .controls button {
49 .step.bubble.hidden {
/external/chromium_org/chrome/browser/ui/cocoa/
Dbase_bubble_controller_unittest.mm100 // The bubble controller will release itself when the window closes.
105 EXPECT_TRUE([controller_ bubble]);
116 // Closing the bubble will autorelease the controller. Give callers a keep-
153 // Test that kAlignEdgeToAnchorEdge and a left bubble arrow correctly aligns the
156 [[controller_ bubble] setArrowLocation:info_bubble::kTopLeft];
157 [[controller_ bubble] setAlignment:info_bubble::kAlignEdgeToAnchorEdge];
161 // Make sure the bubble size hasn't changed.
164 // Make sure the bubble is left aligned.
169 // Test that kAlignEdgeToAnchorEdge and a right bubble arrow correctly aligns
172 [[controller_ bubble] setArrowLocation:info_bubble::kTopRight];
[all …]
Dconfirm_bubble_controller_unittest.mm147 ConfirmBubbleCocoa* bubble = GetBubble();
148 bool contains_bubble_view = [[view subviews] containsObject:bubble];
153 [bubble clickOk];
155 contains_bubble_view = [[view subviews] containsObject:bubble];
164 ConfirmBubbleCocoa* bubble = GetBubble();
165 bool contains_bubble_view = [[view subviews] containsObject:bubble];
170 [bubble clickCancel];
172 contains_bubble_view = [[view subviews] containsObject:bubble];
181 ConfirmBubbleCocoa* bubble = GetBubble();
182 bool contains_bubble_view = [[view subviews] containsObject:bubble];
[all …]
Done_click_signin_bubble_controller_browsertest.mm53 // Test that the bubble does not start sync if the OK button is clicked.
59 // Test that the bubble does not start sync if the Undo button is clicked.
65 // Test that the bubble does not start sync if the bubble is closed.
72 // the bubble does not start sync.
83 // the bubble does not start sync.
Dglobal_error_bubble_controller.mm62 // The bubble will be automatically deleted when the window is closed.
63 GlobalErrorBubbleController* bubble = [[GlobalErrorBubbleController alloc]
67 bubble->error_ = error;
68 bubble->bridge_.reset(new GlobalErrorBubbleControllerInternal::Bridge(
69 bubble));
70 bubble->browser_ = browser;
71 [bubble showWindow:nil];
73 return bubble->bridge_.get();
122 ds = [[self bubble] convertSize:ds toView:nil];
/external/chromium_org/chrome/browser/resources/print_preview/common/
Dsearch_bubble.css5 /* Container for the elements that make up the search bubble. */
6 .search-bubble {
12 /* Create a z-context for search-bubble-innards, its after and before. */
16 /* Contains the text content of the bubble. */
17 .search-bubble-innards {
28 /* Provides the border around the bubble (has to be behind ::after). */
29 .search-bubble-innards::before {
42 .search-bubble-innards::after {
59 .search-bubble-wrapper {
/external/chromium_org/chrome/browser/resources/options/
Dsearch_page.css13 /* Container for the elements that make up the search bubble. */
14 .search-bubble {
20 /* Create a z-context for search-bubble-innards, its after and before. */
24 /* Contains the text content of the bubble. */
25 .search-bubble-innards {
34 /* Provides the border around the bubble (has to be behind ::after). */
35 .search-bubble-innards::before {
48 .search-bubble-innards::after {
66 .search-bubble-wrapper {
Dcontrolled_setting.css5 /* Controlled setting indicator and bubble. */
40 .controlled-setting-bubble-action {
44 .controlled-setting-bubble-header {
48 .controlled-setting-bubble-content-row {
53 .controlled-setting-bubble-extension-name {
68 html[dir='rtl'] .controlled-setting-bubble-extension-name {
72 .controlled-setting-bubble-extension-manage-link {
79 .controlled-setting-bubble-extension-disable-button {
85 html[dir='rtl'] .controlled-setting-bubble-extension-disable-button {
/external/chromium_org/ui/views/examples/
Dbubble_example.cc98 ExampleBubble* bubble = new ExampleBubble(sender, arrow); in ButtonPressed() local
99 bubble->set_color(colors[(color_index++) % arraysize(colors)]); in ButtonPressed()
102 bubble->set_shadow(BubbleBorder::NO_SHADOW); in ButtonPressed()
104 bubble->set_shadow(BubbleBorder::BIG_SHADOW); in ButtonPressed()
106 bubble->set_shadow(BubbleBorder::SMALL_SHADOW); in ButtonPressed()
109 bubble->set_close_on_deactivate(false); in ButtonPressed()
111 BubbleDelegateView::CreateBubble(bubble); in ButtonPressed()
113 bubble->SetAlignment(BubbleBorder::ALIGN_EDGE_TO_ANCHOR_EDGE); in ButtonPressed()
115 bubble->GetWidget()->Show(); in ButtonPressed()
/external/chromium_org/chrome/browser/ui/cocoa/translate/
Dtranslate_bubble_controller_unittest.mm51 TranslateBubbleController* bubble = [bwc translateBubbleController];
52 EXPECT_FALSE(bubble);
57 bubble = [bwc translateBubbleController];
58 EXPECT_TRUE(bubble);
59 InfoBubbleWindow* window = (InfoBubbleWindow*)[bubble window];
62 [bubble close];
64 bubble = [bwc translateBubbleController];
65 EXPECT_FALSE(bubble);
/external/chromium_org/ash/wm/gestures/
Dtray_gesture_handler.cc26 SystemTrayBubble* bubble = tray->GetSystemBubble(); in TrayGestureHandler() local
27 if (!bubble) in TrayGestureHandler()
29 bubble->bubble_view()->set_gesture_dragging(true); in TrayGestureHandler()
30 widget_ = bubble->bubble_view()->GetWidget(); in TrayGestureHandler()
95 SystemTrayBubble* bubble = in CompleteGestureDrag() local
97 if (bubble) in CompleteGestureDrag()
98 bubble->bubble_view()->set_gesture_dragging(false); in CompleteGestureDrag()
/external/chromium_org/ash/system/tray/
Dsystem_tray.cc82 explicit SystemBubbleWrapper(SystemTrayBubble* bubble) in SystemBubbleWrapper() argument
83 : bubble_(bubble), is_persistent_(false) {} in SystemBubbleWrapper()
108 SystemTrayBubble* bubble() const { return bubble_.get(); } in bubble() function in ash::SystemBubbleWrapper
267 system_bubble_->bubble()->StartAutoCloseTimer(close_delay); in ShowDetailedView()
272 system_bubble_->bubble()->StartAutoCloseTimer(close_delay); in SetDetailedViewCloseDelay()
330 notification_bubble_->bubble()->SetVisible(!hide_notifications); in SetHideNotifications()
335 return system_bubble_.get() && system_bubble_->bubble()->ShouldShowShelf(); in ShouldShowShelf()
349 return system_bubble_->bubble(); in GetSystemBubble()
354 system_bubble_->bubble()->IsVisible()) || in IsAnyBubbleVisible()
356 notification_bubble_->bubble()->IsVisible())); in IsAnyBubbleVisible()
[all …]
/external/chromium_org/chrome/browser/extensions/
Dextension_message_bubble_controller_unittest.cc453 FakeExtensionMessageBubble bubble; in TEST_F() local
454 bubble.set_action_on_show( in TEST_F()
481 controller->Show(&bubble); // Simulate showing the bubble. in TEST_F()
494 bubble.set_action_on_show( in TEST_F()
504 controller->Show(&bubble); // Simulate showing the bubble. in TEST_F()
543 FakeExtensionMessageBubble bubble; in TEST_F() local
544 bubble.set_action_on_show( in TEST_F()
546 controller->Show(&bubble); in TEST_F()
555 bubble.set_action_on_show( in TEST_F()
563 controller->Show(&bubble); // Simulate showing the bubble. in TEST_F()
[all …]
/external/chromium_org/chrome/browser/ui/views/passwords/
Dmanage_passwords_bubble_view_browsertest.cc52 const ManagePasswordsBubbleView* bubble = in IN_PROC_BROWSER_TEST_F() local
54 EXPECT_TRUE(bubble->initially_focused_view()); in IN_PROC_BROWSER_TEST_F()
55 EXPECT_EQ(bubble->initially_focused_view(), in IN_PROC_BROWSER_TEST_F()
56 bubble->GetFocusManager()->GetFocusedView()); in IN_PROC_BROWSER_TEST_F()
79 const ManagePasswordsBubbleView* bubble = in IN_PROC_BROWSER_TEST_F() local
81 EXPECT_TRUE(bubble->initially_focused_view()); in IN_PROC_BROWSER_TEST_F()
82 EXPECT_EQ(bubble->initially_focused_view(), in IN_PROC_BROWSER_TEST_F()
83 bubble->GetFocusManager()->GetFocusedView()); in IN_PROC_BROWSER_TEST_F()
/external/chromium_org/ui/views/bubble/
Dbubble_delegate.cc29 Widget* CreateBubbleWidget(BubbleDelegateView* bubble) { in CreateBubbleWidget() argument
32 bubble_params.delegate = bubble; in CreateBubbleWidget()
34 bubble_params.accept_events = bubble->accept_events(); in CreateBubbleWidget()
35 if (bubble->parent_window()) in CreateBubbleWidget()
36 bubble_params.parent = bubble->parent_window(); in CreateBubbleWidget()
37 else if (bubble->anchor_widget()) in CreateBubbleWidget()
38 bubble_params.parent = bubble->anchor_widget()->GetNativeView(); in CreateBubbleWidget()
39 bubble_params.activatable = bubble->CanActivate() ? in CreateBubbleWidget()
41 bubble->OnBeforeBubbleWidgetInit(&bubble_params, bubble_widget); in CreateBubbleWidget()
Dbubble_window_targeter.cc15 BubbleWindowTargeter::BubbleWindowTargeter(BubbleDelegateView* bubble) in BubbleWindowTargeter() argument
16 : wm::MaskedWindowTargeter(bubble->GetWidget()->GetNativeView()), in BubbleWindowTargeter()
17 bubble_(bubble) { in BubbleWindowTargeter()
/external/chromium_org/ui/webui/resources/js/cr/ui/
Dbubble.js174 var bubble = this.getBoundingClientRect();
184 anchorMid + BubbleBase.ARROW_OFFSET - bubble.width :
187 documentWidth - bubble.width - BubbleBase.MIN_VIEWPORT_EDGE_MARGIN;
195 this.arrowAtRight_ ? left + bubble.width - anchorMid :
197 bubble.width - arrow.width / 2);
211 var offsetTop = Math.min(documentHeight - anchor.bottom - bubble.height,
213 var offsetBottom = Math.min(anchor.top - bubble.height,
223 var top = anchor.top - bubble.height - offsetBottom;
229 var left = this.arrowAtRight_ ? anchor.right - bubble.width :
/external/chromium_org/ui/webui/resources/js/cr/ui/page_manager/
Dpage_manager.js382 var bubble = new cr.ui.AutoCloseBubble;
383 bubble.anchorNode = target;
384 bubble.domSibling = domSibling;
385 bubble.arrowLocation = location;
386 bubble.content = content;
387 bubble.show();
388 this.bubble_ = bubble;
404 var bubble = this.bubble_;
405 return bubble && !bubble.hidden ? bubble : null;
/external/chromium_org/chrome/browser/ui/cocoa/autofill/
Dautofill_details_container.mm107 // the dialog and error bubble is reshown, leading to a missing error bubble.
108 // Resetting the anchor view here forces the bubble to show.
171 // If there is already a bubble controller handling this field, reuse.
188 // Handle bubble self-deleting.
198 // If a bubble at maximum size with a left-aligned edge would exceed the
199 // window width, align the right edge of bubble and view. In all other
200 // cases, align the left edge of the bubble and the view.
202 // if the validation bubble stays on the same field but gets a message of
209 [[errorBubbleController_ bubble] setArrowLocation:info_bubble::kTopRight];
210 [[errorBubbleController_ bubble] setAlignment:
[all …]
Dnew_credit_card_bubble_cocoa.mm38 // Controller that drives this bubble. Never NULL; outlives this class.
51 // Displays the bubble anchored at the specified |anchorPoint|.
60 // Create and lay out all control elements inside the bubble.
89 [[self bubble] setBackgroundColor:
99 [[self bubble] setNeedsDisplay:YES];
216 [[bubbleController_ bubble] setArrowLocation:info_bubble::kTopRight];
217 [[bubbleController_ bubble] setAlignment:info_bubble::kAlignArrowToAnchor];
223 [[bubbleController_ bubble] setArrowLocation:info_bubble::kNoArrow];
226 [[bubbleController_ bubble] setAlignment:
229 [[bubbleController_ bubble] setAlignment:
[all …]
/external/chromium_org/chrome/browser/ui/views/
Dconfirm_bubble_views_unittest.cc30 ConfirmBubbleViews* bubble = new ConfirmBubbleViews(model); in TEST_F() local
32 CreateBrowserModalDialogViews(bubble, parent)->Show(); in TEST_F()
35 bubble->GetWidget()->CloseNow(); in TEST_F()

12345678