Home
last modified time | relevance | path

Searched refs:next_tab_index (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/ui/views/controls/tabbed_pane/
Dtabbed_pane.cc349 int next_tab_index = (selected_tab_index() + increment) % tab_count; in AcceleratorPressed() local
351 if (next_tab_index < 0) in AcceleratorPressed()
352 next_tab_index += tab_count; in AcceleratorPressed()
353 SelectTabAt(next_tab_index); in AcceleratorPressed()