HomeSort by relevance Sort by last modified time
    Searched refs:track_bounds (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/ui/views/controls/scrollbar/
base_scroll_bar_thumb.cc 52 gfx::Rect track_bounds = scroll_bar_->GetTrackBounds(); local
54 thumb_bounds.set_x(track_bounds.x() + position);
56 thumb_bounds.set_y(track_bounds.y() + position);
62 gfx::Rect track_bounds = scroll_bar_->GetTrackBounds(); local
64 return x() - track_bounds.x();
65 return y() - track_bounds.y();
bitmap_scroll_bar.cc 222 gfx::Rect track_bounds(prefsize.width(), 0, new_width, prefsize.height());
223 return track_bounds;
227 gfx::Rect track_bounds(0, prefsize.height(), prefsize.width(),
229 return track_bounds;
263 gfx::Rect track_bounds = GetTrackBounds(); local
279 if ((IsHorizontal() && (track_bounds.width() < thumb_prefsize.width()) ||
280 (!IsHorizontal() && (track_bounds.height() < thumb_prefsize.height())))) {
292 gfx::Rect track_bounds = GetTrackBounds(); local
294 track_bounds.x(), track_bounds.y()
    [all...]
base_scroll_bar.cc 475 gfx::Rect track_bounds = GetTrackBounds(); local
476 return IsHorizontal() ? track_bounds.width() : track_bounds.height();

Completed in 49 milliseconds