HomeSort by relevance Sort by last modified time
    Searched refs:client_bounds (Results 1 - 25 of 37) sorted by null

1 2

  /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;
message_center_frame_view.h 27 const gfx::Rect& client_bounds) const OVERRIDE;
  /external/chromium_org/ui/views/win/
hwnd_util.h 30 View* view, const gfx::Rect& client_bounds);
hwnd_util_aurawin.cc 32 const gfx::Rect& client_bounds) {
37 RECT rect = client_bounds.ToRECT();
43 return client_bounds;
  /external/chromium_org/ui/views/window/
native_frame_view.cc 38 const gfx::Rect& client_bounds) const {
41 static_cast<View*>(const_cast<NativeFrameView*>(this)), client_bounds);
43 // Enforce minimum size (1, 1) in case that |client_bounds| is passed with
45 gfx::Rect window_bounds = client_bounds;
native_frame_view.h 24 const gfx::Rect& client_bounds) const OVERRIDE;
non_client_view.h 68 const gfx::Rect& client_bounds) const = 0;
169 gfx::Rect GetWindowBoundsForClientBounds(const gfx::Rect client_bounds) const;
non_client_view.cc 89 const gfx::Rect client_bounds) const {
90 return frame_view_->GetWindowBoundsForClientBounds(client_bounds);
141 gfx::Rect client_bounds(gfx::Point(), client_view_->GetPreferredSize());
142 return GetWindowBoundsForClientBounds(client_bounds).size();
custom_frame_view.h 44 const gfx::Rect& client_bounds) const OVERRIDE;
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/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;
panel_frame_view.h 46 const gfx::Rect& client_bounds) const OVERRIDE;
  /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());
glass_app_window_frame_view_win.h 30 const gfx::Rect& client_bounds) const OVERRIDE;
  /external/chromium_org/apps/ui/views/
app_window_frame_view.h 71 const gfx::Rect& client_bounds) const OVERRIDE;
native_app_window_views.cc 373 // The pretend client_bounds passed in need to be large enough to ensure that
378 gfx::Rect client_bounds = gfx::Rect(1000, 1000);
380 widget_->non_client_view()->GetWindowBoundsForClientBounds(client_bounds);
381 return window_bounds.InsetsFrom(client_bounds);
app_window_frame_view.cc 134 const gfx::Rect& client_bounds) const {
135 gfx::Rect window_bounds = client_bounds;
145 // Enforce minimum size (1, 1) in case that client_bounds is passed with
325 gfx::Rect client_bounds = GetBoundsForClientView();
326 min_size.Enlarge(0, client_bounds.y());
  /external/chromium_org/ash/frame/
custom_frame_view_ash.h 47 const gfx::Rect& client_bounds) const OVERRIDE;
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/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);
bubble_frame_view.h 42 const gfx::Rect& client_bounds) const OVERRIDE;
  /external/chromium_org/chrome/browser/ui/views/frame/
browser_non_client_frame_view_ash.h 47 const gfx::Rect& client_bounds) const OVERRIDE;
glass_browser_frame_view.h 35 const gfx::Rect& client_bounds) const OVERRIDE;
glass_browser_frame_view.cc 196 const gfx::Rect& client_bounds) const {
203 RECT rect = client_bounds.ToRECT();
210 return gfx::Rect(std::max(0, client_bounds.x() - insets.left()),
211 std::max(0, client_bounds.y() - insets.top()),
212 client_bounds.width() + insets.width(),
213 client_bounds.height() + insets.height());
  /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());

Completed in 314 milliseconds

1 2