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/
browser_event_router.cc 299 ui::ListSelectionModel::SelectedIndices new_selection = local
303 for (size_t i = 0; i < new_selection.size(); ++i) {
304 int index = new_selection[i];
  /external/chromium_org/ui/views/controls/table/
table_view.cc 747 ui::ListSelectionModel new_selection; local
749 SelectRowsInRangeFrom(view_index, true, &new_selection);
750 new_selection.set_anchor(ViewToModel(view_index));
751 new_selection.set_active(ViewToModel(view_index));
754 SetSelectionModel(new_selection);
757 void TableView::SetSelectionModel(const ui::ListSelectionModel& new_selection) {
758 if (new_selection.Equals(selection_model_))
762 selection_model_.Copy(new_selection);

Completed in 241 milliseconds