Home
last modified time | relevance | path

Searched refs:popup_bounds (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/chrome/browser/ui/gtk/autofill/
Dautofill_popup_view_gtk.cc96 controller_->popup_bounds().width(), in UpdateBoundsAndRedrawPopup()
97 controller_->popup_bounds().height()); in UpdateBoundsAndRedrawPopup()
99 controller_->popup_bounds().x(), in UpdateBoundsAndRedrawPopup()
100 controller_->popup_bounds().y()); in UpdateBoundsAndRedrawPopup()
103 GdkRectangle popup_rect = controller_->popup_bounds().ToGdkRectangle(); in UpdateBoundsAndRedrawPopup()
/external/chromium_org/chrome/browser/ui/autofill/
Dautofill_popup_controller_unittest.cc96 using AutofillPopupControllerImpl::popup_bounds;
176 gfx::Rect popup_bounds(10, 10, 100, 100); in TEST_F() local
181 popup_controller()->SetPopupBounds(popup_bounds); in TEST_F()
183 EXPECT_EQ(popup_bounds, popup_controller()->popup_bounds()); in TEST_F()
521 gfx::Rect popup_bounds = gfx::Rect(0, 0, popup_max_width, 0); in TEST_F() local
522 autofill_popup_controller_->set_display(gfx::Display(0, popup_bounds)); in TEST_F()
602 autofill_popup_controller->popup_bounds().ToString()) << in TEST_F()
Dautofill_popup_controller.h76 virtual const gfx::Rect& popup_bounds() const = 0;
Dautofill_popup_controller_impl.h102 virtual const gfx::Rect& popup_bounds() const OVERRIDE;
Dautofill_popup_controller_impl.cc138 int popup_width = popup_bounds().width(); in Show()
383 const gfx::Rect& AutofillPopupControllerImpl::popup_bounds() const { in popup_bounds() function in autofill::AutofillPopupControllerImpl
/external/chromium_org/chrome/browser/ui/views/
Dstatus_bubble_views.cc360 gfx::Rect popup_bounds = popup_->GetWindowBoundsInScreen(); in OnPaint() local
420 int width = popup_bounds.width(); in OnPaint()
421 int height = popup_bounds.height(); in OnPaint()
422 SkRect rect(gfx::RectToSkRect(gfx::Rect(popup_bounds.size()))); in OnPaint()
665 gfx::Rect popup_bounds = popup_->GetWindowBoundsInScreen(); in SetURL() local
666 int text_width = static_cast<int>(popup_bounds.width() - in SetURL()
824 gfx::Rect popup_bounds = popup_->GetWindowBoundsInScreen(); in ExpandBubble() local
834 expand_view_->StartExpansion(url_text_, popup_bounds.width(), in ExpandBubble()
/external/chromium/chrome/browser/ui/views/
Dstatus_bubble_views.cc346 gfx::Rect popup_bounds = popup_->GetWindowScreenBounds(); in OnPaint() local
406 int width = popup_bounds.width(); in OnPaint()
407 int height = popup_bounds.height(); in OnPaint()
649 gfx::Rect popup_bounds = popup_->GetWindowScreenBounds(); in SetURL() local
650 int text_width = static_cast<int>(popup_bounds.width() - in SetURL()
804 gfx::Rect popup_bounds = popup_->GetWindowScreenBounds(); in ExpandBubble() local
814 expand_view_->StartExpansion(url_text_, popup_bounds.width(), in ExpandBubble()
/external/chromium/chrome/browser/extensions/
Dextension_tabs_module.cc412 gfx::Rect popup_bounds; in RunImpl() local
414 popup_bounds = window_bounds; // Use window size as default for popups in RunImpl()
428 popup_bounds.set_x(bounds_val); in RunImpl()
435 popup_bounds.set_y(bounds_val); in RunImpl()
442 popup_bounds.set_width(bounds_val); in RunImpl()
449 popup_bounds.set_height(bounds_val); in RunImpl()
503 new_window->window()->SetBounds(popup_bounds); in RunImpl()
/external/chromium_org/chrome/browser/ui/cocoa/autofill/
Dautofill_popup_view_bridge.mm61 NSRect frame = NSRectFromCGRect(controller_->popup_bounds().ToCGRect());
/external/chromium_org/chrome/browser/apps/
Dweb_view_interactive_browsertest.cc335 gfx::Rect popup_bounds = popup_rwh->GetView()->GetViewBounds(); in PopupTestHelper() local
342 gfx::Vector2d diff = popup_bounds.origin() - embedder_bounds.origin(); in PopupTestHelper()
/external/chromium_org/chrome/browser/ui/views/autofill/
Dautofill_popup_view_views.cc240 GetWidget()->SetBounds(controller_->popup_bounds()); in UpdateBoundsAndRedrawPopup()