Home
last modified time | relevance | path

Searched refs:container_bounds (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/ash/system/tray/
Dspecial_popup_row.cc121 gfx::Rect container_bounds = content_bounds; in Layout() local
122 container_bounds.ClampToCenteredSize(bounds.size()); in Layout()
123 container_bounds.set_x(content_bounds.width() - container_bounds.width()); in Layout()
124 button_container_->SetBoundsRect(container_bounds); in Layout()
/external/chromium_org/chrome/browser/ui/omnibox/
Domnibox_current_page_delegate_impl.cc104 gfx::Rect container_bounds = web_contents->GetContainerBounds(); in DoPrerender() local
111 container_bounds.size()); in DoPrerender()
119 container_bounds.size()); in DoPrerender()
/external/chromium_org/chrome/browser/android/omnibox/
Domnibox_prerender.cc145 gfx::Rect container_bounds = web_contents->GetContainerBounds(); in DoPrerender() local
151 container_bounds.size()); in DoPrerender()
158 container_bounds.size()); in DoPrerender()
/external/chromium_org/ash/wm/
Dsystem_modal_container_layout_manager_unittest.cc563 const gfx::Rect& container_bounds = GetModalContainer()->bounds(); in TEST_F() local
567 (container_bounds.right() - modal_size.width()) / 2, // X centered in TEST_F()
568 container_bounds.bottom() - modal_size.height()); // at bottom in TEST_F()
599 const gfx::Rect& container_bounds = GetModalContainer()->bounds(); in TEST_F() local
604 (container_bounds.right() - modal_size.width()) / 2, // X centered in TEST_F()
605 container_bounds.bottom() - modal_size.height()); // at bottom in TEST_F()
/external/chromium_org/ash/wm/dock/
Ddocked_window_layout_manager.cc567 const gfx::Rect container_bounds = dock_container_->GetBoundsInScreen(); in GetAlignmentOfWindow() local
568 if (bounds.x() <= container_bounds.x() && in GetAlignmentOfWindow()
569 bounds.right() > container_bounds.x()) { in GetAlignmentOfWindow()
571 } else if (bounds.x() < container_bounds.right() && in GetAlignmentOfWindow()
572 bounds.right() >= container_bounds.right()) { in GetAlignmentOfWindow()
1027 const gfx::Rect container_bounds = dock_container_->GetBoundsInScreen(); in GetEdgeNearestWindow() local
1028 return (abs(bounds.x() - container_bounds.x()) < in GetEdgeNearestWindow()
1029 abs(bounds.right() - container_bounds.right())) ? in GetEdgeNearestWindow()
/external/chromium_org/athena/wm/
Dsplit_view_controller.cc529 gfx::Rect container_bounds = container_->GetBoundsInScreen(); in BezelScrollBegin() local
531 delta > 0 ? display_bounds.x() - container_bounds.x() in BezelScrollBegin()
532 : display_bounds.right() - container_bounds.x(); in BezelScrollBegin()
/external/chromium_org/chrome/browser/prerender/
Dprerender_local_predictor.cc757 gfx::Rect container_bounds = source_web_contents->GetContainerBounds(); in OnLookupURL() local
758 info->size_.reset(new gfx::Size(container_bounds.size())); in OnLookupURL()
/external/chromium_org/chrome/browser/ui/views/autofill/
Dautofill_dialog_views.cc413 gfx::Rect container_bounds((width() - container_size.width()) / 2, in Layout() local
417 container_->SetBoundsRect(container_bounds); in Layout()