Home | History | Annotate | Download | only in history

Lines Matching defs:visits

284   VisitVector visits;
285 visit_database_->GetVisitsForURL(url_id, &visits);
286 size_t our_visit_row_index = visits.size();
287 for (size_t i = 0; i < visits.size(); i++) {
288 // While we're going trough all the visits, also find our row so we can
290 if (visits[i].visit_id == visit_id) {
292 } else if (visits[i].is_indexed) {
293 visits[i].is_indexed = false;
294 visit_database_->UpdateVisitRow(visits[i]);
295 DeletePageData(visits[i].visit_time, url, NULL);
301 if (our_visit_row_index >= visits.size()) {
306 DCHECK(visit_time == visits[our_visit_row_index].visit_time);
309 visits[our_visit_row_index].is_indexed = true;
310 if (!visit_database_->UpdateVisitRow(visits[our_visit_row_index]))
361 // Now delete all visits up to the oldest one we were supposed to delete.