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

  /external/chromium_org/chrome/browser/ui/views/message_center/
message_center_frame_view.cc 36 gfx::Rect client_bounds = GetLocalBounds(); local
37 client_bounds.Inset(GetInsets());
38 return client_bounds;
42 const gfx::Rect& client_bounds) const {
43 gfx::Rect window_bounds = client_bounds;
  /external/chromium_org/ui/views/widget/
native_widget_aura_unittest.cc 193 gfx::Rect client_bounds = widget->GetClientAreaBoundsInScreen(); local
194 EXPECT_EQ(10, client_bounds.x());
195 EXPECT_EQ(20, client_bounds.y());
196 EXPECT_EQ(300, client_bounds.width());
197 EXPECT_EQ(400, client_bounds.height());
  /external/chromium_org/ui/views/window/
dialog_client_view_unittest.cc 72 const gfx::Rect client_bounds = GetUpdatedClientBounds(); local
76 EXPECT_EQ(contents_->bounds().origin(), client_bounds.origin());
77 EXPECT_EQ(contents_->bounds().right(), client_bounds.right());
  /external/chromium_org/ui/views/bubble/
bubble_frame_view.cc 89 gfx::Rect client_bounds = GetLocalBounds(); local
90 client_bounds.Inset(GetInsets());
91 client_bounds.Inset(bubble_border_->GetInsets());
92 return client_bounds;
96 const gfx::Rect& client_bounds) const {
98 gfx::Rect(), client_bounds.size(), false);
bubble_border.h 139 // Get or set the client_bounds, a Windows-only temporary hack.
141 const gfx::Rect& client_bounds() const { return client_bounds_; } function in class:views::BubbleBorder
  /external/chromium_org/ui/views/touchui/
touch_selection_controller_impl.cc 465 gfx::Rect client_bounds = client_view_->GetBounds(); local
466 if (client_bounds.Contains(end_rect_1) &&
467 client_bounds.Contains(end_rect_2))
469 else if (client_bounds.Contains(end_rect_1))
471 else if (client_bounds.Contains(end_rect_2))
  /external/chromium_org/ash/wm/
frame_painter.cc 312 const gfx::Rect& client_bounds) const {
313 return gfx::Rect(std::max(0, client_bounds.x() - kBorderThickness),
314 std::max(0, client_bounds.y() - top_height),
315 client_bounds.width() + (2 * kBorderThickness),
316 client_bounds.height() + top_height + kBorderThickness);
371 gfx::Rect client_bounds = view->GetBoundsForClientView(); local
372 min_size.Enlarge(0, client_bounds.y());
564 gfx::Rect client_bounds = view->GetBoundsForClientView(); local
565 canvas->FillRect(gfx::Rect(client_bounds.x(),
566 client_bounds.y() - kHeaderContentSeparatorSize
    [all...]

Completed in 1811 milliseconds