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

  /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 26 // Bubble layout constants.
39 NetworkProfileBubbleView* bubble = local
41 views::BubbleDelegateView::CreateBubble(bubble)->Show();
44 // Mark the time of the last bubble and reduce the number of warnings left
137 // If the user interacted with the bubble we don't reduce the number of
  /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.
28 // corner. Used to ensure that if the parent window is resized with the bubble
29 // remaining visible, the bubble continues to be anchored correctly.
37 // A local event tap that will dismiss the bubble when a click is delivered
46 // The bubble window should close if it (or its parent) resigns key status.
51 // The point in base screen coordinates at which the bubble should open and the
54 @property(nonatomic, readonly) InfoBubbleView* bubble; variable
56 // Controls if the bubble auto-closes if the user clicks outside the bubble
    [all...]
  /external/chromium_org/chrome/browser/ui/global_error/
global_error_service.cc 31 GlobalErrorBubbleViewBase* bubble = error->GetBubbleView(); local
32 if (bubble)
33 bubble->CloseBubbleView();
  /external/chromium_org/chrome/browser/ui/views/passwords/
manage_passwords_bubble_view_browsertest.cc 52 const ManagePasswordsBubbleView* bubble = local
54 EXPECT_TRUE(bubble->initially_focused_view());
55 EXPECT_EQ(bubble->initially_focused_view(),
56 bubble->GetFocusManager()->GetFocusedView());
60 // And, just for grins, ensure that we can re-open the bubble.
79 const ManagePasswordsBubbleView* bubble = local
81 EXPECT_TRUE(bubble->initially_focused_view());
82 EXPECT_EQ(bubble->initially_focused_view(),
83 bubble->GetFocusManager()->GetFocusedView());
87 // And, just for grins, ensure that we can re-open the bubble
    [all...]
  /external/chromium_org/ui/views/examples/
bubble_example.cc 8 #include "ui/views/bubble/bubble_delegate.h"
68 BubbleExample::BubbleExample() : ExampleBase("Bubble") {}
98 ExampleBubble* bubble = new ExampleBubble(sender, arrow); local
99 bubble->set_color(colors[(color_index++) % arraysize(colors)]);
102 bubble->set_shadow(BubbleBorder::NO_SHADOW);
104 bubble->set_shadow(BubbleBorder::BIG_SHADOW);
106 bubble->set_shadow(BubbleBorder::SMALL_SHADOW);
109 bubble->set_close_on_deactivate(false);
111 BubbleDelegateView::CreateBubble(bubble);
113 bubble->SetAlignment(BubbleBorder::ALIGN_EDGE_TO_ANCHOR_EDGE)
    [all...]
  /external/chromium_org/ash/wm/gestures/
tray_gesture_handler.cc 26 SystemTrayBubble* bubble = tray->GetSystemBubble(); local
27 if (!bubble)
29 bubble->bubble_view()->set_gesture_dragging(true);
30 widget_ = bubble->bubble_view()->GetWidget();
95 SystemTrayBubble* bubble = local
97 if (bubble)
98 bubble->bubble_view()->set_gesture_dragging(false);
  /external/chromium_org/chrome/browser/ui/autofill/
new_credit_card_bubble_controller.cc 84 bubble() { function in class:autofill::NewCreditCardBubbleController
110 // TODO(dbeam): Make a bubble on all applicable platforms.
generated_credit_card_bubble_controller.cc 66 // bubble is showing. Always calling |Hide()| ensures that the bubble closes.
93 // Don't destory the bubble due to reloads, form submits, or redirects right
159 GeneratedCreditCardBubbleController::bubble() { function in class:autofill::GeneratedCreditCardBubbleController
220 // card bubble.
243 // TODO(dbeam): Make a bubble on all applicable platforms.
250 // If the bubble was an automatically created "you generated a card" bubble,
  /external/chromium_org/ash/first_run/
first_run_helper_impl.cc 96 DCHECK(tray->HasSystemBubble()) << "Tray bubble is closed already.";
107 views::View* bubble = tray->GetSystemBubble()->bubble_view(); local
108 return bubble->GetBoundsInScreen();
  /external/chromium_org/chrome/browser/sync/test/integration/
single_client_bookmarks_sync_test.cc 108 // -> Seattle Bubble
147 const BookmarkNode* bubble = AddURL( local
148 0, bar, bar->child_count(), "Seattle Bubble",
150 ASSERT_TRUE(bubble != NULL);
  /external/chromium_org/chrome/browser/ui/views/autofill/
new_credit_card_bubble_views.cc 15 #include "ui/views/bubble/bubble_frame_view.h"
27 // The space between the bubble and edges of the web contents when showing
32 // Get the view this bubble will be anchored to via |controller|.
57 // This bubble doesn't render correctly on Windows without calling
148 NewCreditCardBubbleViews* bubble = new NewCreditCardBubbleViews(controller); local
149 return bubble->weak_ptr_factory_.GetWeakPtr();
  /external/chromium_org/chrome/browser/extensions/
extension_message_bubble_controller_unittest.cc 197 // A fake bubble used for testing the controller. Takes an action that specifies
198 // what should happen when the bubble is "shown" (the bubble is actually not
453 FakeExtensionMessageBubble bubble; local
454 bubble.set_action_on_show(
481 controller->Show(&bubble); // Simulate showing the bubble.
494 bubble.set_action_on_show(
504 controller->Show(&bubble); // Simulate showing the bubble
543 FakeExtensionMessageBubble bubble; local
662 FakeExtensionMessageBubble bubble; local
770 FakeExtensionMessageBubble bubble; local
901 FakeExtensionMessageBubble bubble; local
    [all...]
  /external/chromium_org/ash/system/web_notification/
web_notification_tray.cc 36 #include "ui/views/bubble/tray_bubble_view.h"
75 // TrayBubbleWrapper instances for a bubble.
78 // Takes ownership of |bubble| and creates |bubble_wrapper_|.
80 message_center::MessageBubbleBase* bubble) {
81 bubble_.reset(bubble);
85 bubble->GetInitParams(anchor_alignment);
96 bubble->InitializeContents(bubble_view);
99 message_center::MessageBubbleBase* bubble() const { return bubble_.get(); } function in class:ash::WebNotificationBubbleWrapper
234 // Assume that the bottom line of the status area widget and the bubble
304 message_center_bubble()->bubble()->IsVisible())
    [all...]
  /external/chromium_org/chrome/browser/translate/
translate_manager_render_view_host_unittest.cc 409 // See BubbleNormalTranslate for corresponding bubble UX testing.
492 // See BubbleTranslateScriptNotAvailable for corresponding bubble UX testing.
522 // See BubbleUnknownLanguage for corresponding bubble UX testing.
594 // TODO(port): Test corresponding bubble translate UX: http://crbug.com/383235
741 // TODO(port): Test corresponding bubble translate UX: http://crbug.com/383235
775 // TODO(port): Test corresponding bubble translate UX: http://crbug.com/383235
800 // TODO(port): Test corresponding bubble translate UX: http://crbug.com/383235
1590 TranslateBubbleModel* bubble = factory->model(); local
1633 TranslateBubbleModel* bubble = factory->model(); local
1676 TranslateBubbleModel* bubble = factory->model(); local
    [all...]
  /external/chromium_org/ash/system/tray/
system_tray.cc 77 // instances for a bubble.
81 // Takes ownership of |bubble|.
82 explicit SystemBubbleWrapper(SystemTrayBubble* bubble)
83 : bubble_(bubble), is_persistent_(false) {}
85 // Initializes the bubble view and creates |bubble_wrapper_|.
95 // The system bubble should not have an arrow.
108 SystemTrayBubble* bubble() const { return bubble_.get(); } function in class:ash::SystemBubbleWrapper
267 system_bubble_->bubble()->StartAutoCloseTimer(close_delay);
272 system_bubble_->bubble()->StartAutoCloseTimer(close_delay);
296 // Only update the notification bubble if visible (i.e. don't create one)
507 SystemTrayBubble* bubble = new SystemTrayBubble(this, items, bubble_type); local
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
ImmersiveModeConfirmation.java 253 final View bubble = mClingLayout.findViewById(R.id.text); local
254 bubble.setAlpha(0f);
255 bubble.setTranslationY(-OFFSET_DP*density);
256 bubble.animate()

Completed in 580 milliseconds