Searched defs:to_resize (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dstacked_tab_strip_layout.cc448 int to_resize = std::min(delta, max_x - ideal_x(i)); local
450 if (to_resize <= 0)
452 SetIdealBoundsAt(i, ideal_x(i) + to_resize);
453 delta -= to_resize;
465 const int to_resize = std::min(ideal_x(i) - min_compressed, delta); local
466 if (to_resize <= 0)
468 SetIdealBoundsAt(i, ideal_x(i) - to_resize);
469 delta -= to_resize;

Completed in 244 milliseconds