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

  /external/chromium_org/ui/views/controls/button/
custom_button_unittest.cc 67 gfx::Rect widget_bounds = widget->GetWindowBoundsInScreen(); local
68 widget_bounds.set_origin(cursor);
69 widget->SetBounds(widget_bounds);
  /external/chromium_org/ash/shelf/
shelf_widget_unittest.cc 200 gfx::Rect widget_bounds = widget->GetWindowBoundsInScreen(); local
201 EXPECT_TRUE(widget_bounds.Intersects(shelf_bounds));
228 widget_bounds = widget->GetWindowBoundsInScreen();
229 EXPECT_TRUE(widget_bounds.Intersects(shelf_bounds));
  /external/chromium_org/chrome/browser/ui/views/
dropdown_bar_host.cc 290 gfx::Rect widget_bounds; local
291 GetWidgetBounds(&widget_bounds);
300 int difference = new_pos.right() - kAddedWidth - widget_bounds.right() -
find_bar_host.cc 264 gfx::Rect widget_bounds; local
265 GetWidgetBounds(&widget_bounds);
266 if (widget_bounds.IsEmpty())
273 if (widget_bounds.width() < prefsize.width())
274 prefsize.set_width(widget_bounds.width());
276 // Don't show the find bar if |widget_bounds| is not tall enough.
277 if (widget_bounds.height() < prefsize.height())
283 int x = widget_bounds.x();
285 x += widget_bounds.width() - prefsize.width();
286 int y = widget_bounds.y()
    [all...]
  /external/chromium_org/ui/views/controls/scrollbar/
base_scroll_bar.cc 290 gfx::Rect widget_bounds = widget->GetWindowBoundsInScreen(); local
291 gfx::Point temp_pt(p.x() - widget_bounds.x(), p.y() - widget_bounds.y());

Completed in 159 milliseconds