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

  /external/chromium_org/chrome/browser/ui/views/message_center/
message_center_frame_view.cc 31 gfx::Rect client_bounds = GetLocalBounds(); local
32 client_bounds.Inset(GetInsets());
33 return client_bounds;
37 const gfx::Rect& client_bounds) const {
38 gfx::Rect window_bounds = client_bounds;
  /external/chromium_org/ui/views/widget/
native_widget_aura_unittest.cc 194 gfx::Rect client_bounds = widget->GetClientAreaBoundsInScreen(); local
195 EXPECT_EQ(10, client_bounds.x());
196 EXPECT_EQ(20, client_bounds.y());
197 EXPECT_EQ(300, client_bounds.width());
198 EXPECT_EQ(400, client_bounds.height());
  /external/chromium_org/ui/views/window/
dialog_client_view_unittest.cc 75 const gfx::Rect client_bounds = GetUpdatedClientBounds(); local
79 EXPECT_EQ(contents_->bounds().origin(), client_bounds.origin());
80 EXPECT_EQ(contents_->bounds().right(), client_bounds.right());
  /external/chromium_org/ui/views/bubble/
bubble_frame_view.cc 90 gfx::Rect client_bounds = GetLocalBounds(); local
91 client_bounds.Inset(GetInsets());
92 client_bounds.Inset(bubble_border_->GetInsets());
93 return client_bounds;
97 const gfx::Rect& client_bounds) const {
99 gfx::Rect(), client_bounds.size(), false);
  /external/chromium_org/ui/views/touchui/
touch_selection_controller_impl.cc 461 gfx::Rect client_bounds = client_view_->GetBounds(); local
462 if (client_bounds.Contains(end_rect_1) &&
463 client_bounds.Contains(end_rect_2))
465 else if (client_bounds.Contains(end_rect_1))
467 else if (client_bounds.Contains(end_rect_2))

Completed in 1975 milliseconds