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

  /external/chromium_org/chrome/browser/ui/views/message_center/
message_center_frame_view.cc 32 gfx::Rect client_bounds = GetLocalBounds(); local
33 client_bounds.Inset(GetInsets());
34 return client_bounds;
38 const gfx::Rect& client_bounds) const {
39 gfx::Rect window_bounds = client_bounds;
  /external/chromium_org/ash/wm/panels/
panel_frame_view.cc 120 gfx::Rect client_bounds = bounds(); local
121 client_bounds.Inset(0, NonClientTopBorderHeight(), 0, 0);
122 return client_bounds;
126 const gfx::Rect& client_bounds) const {
127 gfx::Rect window_bounds = client_bounds;
  /external/chromium_org/chrome/browser/ui/views/apps/
glass_app_window_frame_view_win.cc 54 const gfx::Rect& client_bounds) const {
56 return gfx::Rect(client_bounds.x() - insets.left(),
57 client_bounds.y() - insets.top(),
58 client_bounds.width() + insets.left() + insets.right(),
59 client_bounds.height() + insets.top() + insets.bottom());
114 gfx::Rect client_bounds = GetBoundsForClientView(); local
115 min_size.Enlarge(0, client_bounds.y());
  /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 94 gfx::Rect client_bounds = GetLocalBounds(); local
95 client_bounds.Inset(GetInsets());
96 client_bounds.Inset(bubble_border_->GetInsets());
97 return client_bounds;
101 const gfx::Rect& client_bounds) const {
103 gfx::Rect(), client_bounds.size(), false);
  /external/chromium_org/ui/views/widget/
native_widget_aura_unittest.cc 259 gfx::Rect client_bounds = widget->GetClientAreaBoundsInScreen(); local
260 EXPECT_EQ(10, client_bounds.x());
261 EXPECT_EQ(20, client_bounds.y());
262 EXPECT_EQ(300, client_bounds.width());
263 EXPECT_EQ(400, client_bounds.height());
  /external/chromium_org/ash/frame/
custom_frame_view_ash.cc 436 gfx::Rect client_bounds = bounds(); local
437 client_bounds.Inset(0, NonClientTopBorderHeight(), 0, 0);
438 return client_bounds;
442 const gfx::Rect& client_bounds) const {
443 gfx::Rect window_bounds = client_bounds;
  /external/chromium_org/ui/views/touchui/
touch_selection_controller_impl.cc 349 gfx::Rect client_bounds = client_view_->GetBounds(); local
350 if (r1.y() < client_bounds.y())
351 r1.Inset(0, client_bounds.y() - r1.y(), 0, 0);
352 if (r2.y() < client_bounds.y())
353 r2.Inset(0, client_bounds.y() - r2.y(), 0, 0);

Completed in 1159 milliseconds