HomeSort by relevance Sort by last modified time
    Searched defs:new_selection (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/chrome/browser/extensions/api/tabs/
tabs_event_router.cc 326 ui::ListSelectionModel::SelectedIndices new_selection = local
330 for (size_t i = 0; i < new_selection.size(); ++i) {
331 int index = new_selection[i];
  /external/chromium_org/ui/views/controls/table/
table_view.cc 762 ui::ListSelectionModel new_selection; local
764 SelectRowsInRangeFrom(view_index, true, &new_selection);
765 new_selection.set_anchor(ViewToModel(view_index));
766 new_selection.set_active(ViewToModel(view_index));
769 SetSelectionModel(new_selection);
772 void TableView::SetSelectionModel(const ui::ListSelectionModel& new_selection) {
773 if (new_selection.Equals(selection_model_))
777 selection_model_.Copy(new_selection);

Completed in 582 milliseconds