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

1 2 3

  /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;
message_center_frame_view.h 27 const gfx::Rect& client_bounds) const OVERRIDE;
  /external/chromium_org/ui/views/window/
native_frame_view.cc 35 const gfx::Rect& client_bounds) const {
38 static_cast<View*>(const_cast<NativeFrameView*>(this)), client_bounds);
41 return client_bounds;
native_frame_view.h 22 const gfx::Rect& client_bounds) const OVERRIDE;
non_client_view.h 58 const gfx::Rect& client_bounds) const = 0;
172 gfx::Rect GetWindowBoundsForClientBounds(const gfx::Rect client_bounds) const;
non_client_view.cc 91 const gfx::Rect client_bounds) const {
92 return frame_view_->GetWindowBoundsForClientBounds(client_bounds);
143 gfx::Rect client_bounds(gfx::Point(), client_view_->GetPreferredSize());
144 return GetWindowBoundsForClientBounds(client_bounds).size();
  /external/chromium/chrome/browser/ui/views/frame/
popup_non_client_frame_view.cc 28 const gfx::Rect& client_bounds) const {
29 return client_bounds;
popup_non_client_frame_view.h 23 const gfx::Rect& client_bounds) const OVERRIDE;
  /external/chromium_org/chrome/browser/ui/views/frame/
popup_non_client_frame_view.cc 23 const gfx::Rect& client_bounds) const {
24 return client_bounds;
popup_non_client_frame_view.h 20 const gfx::Rect& client_bounds) const OVERRIDE;
app_non_client_frame_view_ash.h 28 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 177 const gfx::Rect& client_bounds) const {
184 RECT rect = client_bounds.ToRECT();
191 return gfx::Rect(std::max(0, client_bounds.x() - insets.left()),
192 std::max(0, client_bounds.y() - insets.top()),
193 client_bounds.width() + insets.width(),
194 client_bounds.height() + insets.height());
  /external/chromium_org/ui/views/win/
hwnd_util_win.cc 29 const gfx::Rect& client_bounds) {
32 RECT rect = client_bounds.ToRECT();
hwnd_util.h 30 View* view, const gfx::Rect& client_bounds);
hwnd_util_aurawin.cc 31 const gfx::Rect& client_bounds) {
37 RECT rect = client_bounds.ToRECT();
43 return client_bounds;
  /external/chromium_org/ash/wm/panels/
panel_frame_view.cc 142 const gfx::Rect& client_bounds) const {
144 return client_bounds;
146 close_button_->bounds().bottom(), client_bounds);
panel_frame_view.h 46 const gfx::Rect& client_bounds) const OVERRIDE;
  /external/chromium/chrome/browser/chromeos/frame/
bubble_frame_view.cc 99 const gfx::Rect& client_bounds) const {
120 return gfx::Rect(std::max(0, client_bounds.x() - insets.left()),
121 std::max(0, client_bounds.y() - top_height),
122 client_bounds.width() + insets.width(),
123 client_bounds.height() + top_height + insets.bottom());
bubble_frame_view.h 39 const gfx::Rect& client_bounds) const OVERRIDE;
  /external/chromium_org/chrome/browser/ui/views/extensions/
shell_window_frame_view.cc 147 const gfx::Rect& client_bounds) const {
149 gfx::Rect window_bounds = client_bounds;
150 // Enforce minimum size (1, 1) in case that client_bounds is passed with
163 return gfx::Rect(client_bounds.x(),
164 std::max(0, client_bounds.y() - kCaptionHeight),
165 std::max(header_width, client_bounds.width()),
166 client_bounds.height() + kCaptionHeight);
332 gfx::Rect client_bounds = GetBoundsForClientView();
333 min_size.Enlarge(0, client_bounds.y());
shell_window_frame_view.h 47 const gfx::Rect& client_bounds) const OVERRIDE;
  /external/chromium_org/ash/wm/
custom_frame_view_ash.h 60 const gfx::Rect& client_bounds) const OVERRIDE;
custom_frame_view_ash.cc 87 const gfx::Rect& client_bounds) const {
90 client_bounds);
  /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);

Completed in 280 milliseconds

1 2 3