Home | History | Annotate | Download | only in manifest_handlers

Lines Matching refs:ids

29     "'externally_connectable' specifies neither 'matches' nor 'ids'; "
161 std::vector<std::string> ids;
164 if (externally_connectable->ids) {
166 externally_connectable->ids->begin();
167 it != externally_connectable->ids->end(); ++it) {
171 ids.push_back(*it);
181 !externally_connectable->ids) {
187 new ExternallyConnectableInfo(matches, ids, all_ids));
194 const std::vector<std::string>& ids,
196 : matches(matches), ids(Sorted(ids)), all_ids(all_ids) {}
201 DCHECK(base::STLIsSorted(ids));
202 return std::binary_search(ids.begin(), ids.end(), id);