Searched defs:bubble (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/chrome/browser/ui/views/
H A Dconfirm_bubble_views_unittest.cc19 // Create parent widget, as confirm bubble must have an owner.
30 ConfirmBubbleViews* bubble = new ConfirmBubbleViews(model); local
32 CreateBrowserModalDialogViews(bubble, parent)->Show();
35 bubble->GetWidget()->CloseNow();
H A Dnetwork_profile_bubble_view.cc39 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
H A Dfullscreen_exit_bubble_views.cc24 #include "ui/views/bubble/bubble_border.h"
95 FullscreenExitView(FullscreenExitBubbleViews* bubble,
126 FullscreenExitBubbleViews* bubble,
130 : bubble_(bubble),
171 button_view_->accept_button()->SetText(bubble->GetAllowButtonText());
277 // TODO(yzshen): Change to use the new views bubble, BubbleDelegateView.
278 // TODO(pkotwicz): When this becomes a views bubble, make sure that this
279 // bubble is ignored by ImmersiveModeControllerAsh::BubbleManager.
125 FullscreenExitView( FullscreenExitBubbleViews* bubble, const base::string16& accelerator, const GURL& url, FullscreenExitBubbleType bubble_type) argument
/external/chromium_org/ui/views/bubble/
H A Dbubble_window_targeter.cc5 #include "ui/views/bubble/bubble_window_targeter.h"
10 #include "ui/views/bubble/bubble_delegate.h"
11 #include "ui/views/bubble/bubble_frame_view.h"
15 BubbleWindowTargeter::BubbleWindowTargeter(BubbleDelegateView* bubble) argument
16 : wm::MaskedWindowTargeter(bubble->GetWidget()->GetNativeView()),
17 bubble_(bubble) {
H A Dbubble_delegate.cc5 #include "ui/views/bubble/bubble_delegate.h"
12 #include "ui/views/bubble/bubble_frame_view.h"
28 // Create a widget to host the bubble.
29 Widget* CreateBubbleWidget(BubbleDelegateView* bubble) { argument
32 bubble_params.delegate = bubble;
34 bubble_params.accept_events = bubble->accept_events();
35 if (bubble->parent_window())
36 bubble_params.parent = bubble->parent_window();
37 else if (bubble->anchor_widget())
38 bubble_params.parent = bubble
[all...]
/external/chromium_org/ash/shell/
H A Dbubble.cc6 #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/
H A Dbase_bubble_controller.h12 // 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/
H A Dglobal_error_service.cc31 GlobalErrorBubbleViewBase* bubble = error->GetBubbleView(); local
32 if (bubble)
33 bubble->CloseBubbleView();
/external/chromium_org/chrome/browser/ui/views/passwords/
H A Dmanage_passwords_bubble_view_browsertest.cc52 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/
H A Dbubble_example.cc8 #include "ui/views/bubble/bubble_delegate.h"
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);
115 bubble
[all...]
/external/chromium_org/ash/first_run/
H A Dfirst_run_helper_impl.cc96 DCHECK(tray->HasSystemBubble()) << "Tray bubble is closed already.";
107 views::View* bubble = tray->GetSystemBubble()->bubble_view(); local
108 return bubble->GetBoundsInScreen();
/external/chromium_org/ash/wm/gestures/
H A Dtray_gesture_handler.cc26 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/
H A Dnew_credit_card_bubble_controller.cc84 bubble() { function in class:autofill::NewCreditCardBubbleController
110 // TODO(dbeam): Make a bubble on all applicable platforms.
H A Dgenerated_credit_card_bubble_controller.cc66 // 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/chrome/browser/extensions/
H A Ddev_mode_bubble_controller.cc184 void DevModeBubbleController::Show(ExtensionMessageBubble* bubble) { argument
186 ExtensionMessageBubbleController::Show(bubble);
H A Dextension_message_bubble_controller.cc77 void ExtensionMessageBubbleController::Show(ExtensionMessageBubble* bubble) { argument
88 bubble->OnActionButtonClicked(action_button_callback);
89 bubble->OnDismissButtonClicked(dismiss_button_callback);
90 bubble->OnLinkClicked(link_callback);
92 bubble->Show();
H A Dsuspicious_extension_bubble_controller.cc95 // This bubble solicits no action from the user. Or as Nimoy would have it:
180 void SuspiciousExtensionBubbleController::Show(ExtensionMessageBubble* bubble) { argument
182 ExtensionMessageBubbleController::Show(bubble);
H A Dextension_message_bubble_controller_unittest.cc197 // 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/chrome/browser/sync/test/integration/
H A Dsingle_client_bookmarks_sync_test.cc147 const BookmarkNode* bubble = AddURL( local
150 ASSERT_TRUE(bubble != NULL);
/external/chromium_org/chrome/browser/ui/views/autofill/
H A Dnew_credit_card_bubble_views.cc15 #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/ui/message_center/views/
H A Dmessage_center_bubble.cc21 explicit ContentsView(MessageCenterBubble* bubble, views::View* contents);
37 ContentsView::ContentsView(MessageCenterBubble* bubble, views::View* contents) argument
38 : bubble_(bubble->AsWeakPtr()) {
106 // Resize the content of the bubble view to the given bubble size. This is
107 // necessary in case of the bubble border forcing a bigger size then the
/external/chromium_org/chrome/browser/translate/
H A Dtranslate_manager_render_view_host_unittest.cc409 // 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
829 // TODO(port): Test corresponding bubble translate UX: http://crbug.com/383235
862 // TODO(port): Test corresponding bubble translate UX: http://crbug.com/383235
882 // TODO(port): Test corresponding bubble translat
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/
H A Dsystem_tray.cc77 // instances for a bubble.
81 // Takes ownership of |bubble|.
82 explicit SystemBubbleWrapper(SystemTrayBubble* bubble) argument
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 i
507 SystemTrayBubble* bubble = new SystemTrayBubble(this, items, bubble_type); local
[all...]
/external/chromium_org/ash/system/web_notification/
H A Dweb_notification_tray.cc36 #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()
79 WebNotificationBubbleWrapper(WebNotificationTray* tray, message_center::MessageBubbleBase* bubble) argument
[all...]
/external/chromium_org/ash/wm/
H A Dimmersive_fullscreen_controller.cc26 #include "ui/views/bubble/bubble_delegate.h"
66 // |maybe_bubble| is a bubble.
137 // Start / stop observing changes to |bubble|'s visibility.
138 void StartObserving(aura::Window* bubble);
139 void StopObserving(aura::Window* bubble);
174 aura::Window* bubble) {
175 if (bubbles_.insert(bubble).second) {
176 bubble->AddObserver(this);
182 aura::Window* bubble) {
183 if (bubbles_.erase(bubble)) {
173 StartObserving( aura::Window* bubble) argument
181 StopObserving( aura::Window* bubble) argument
[all...]

Completed in 2422 milliseconds

12