Home | History | Annotate | Download | only in history

Lines Matching defs:visits

97   // The ID of the URL to get visits for and then update.
99 // Whether fetching the recent visits for the URL succeeded.
119 // Make sure the private data is going to get as many recent visits as
315 // If something appears to have changed, update the recent visits
347 VisitInfoVector* visits = &row_pos->second.visits;
348 visits->clear();
351 visits->reserve(size);
353 // Copy from the VisitVector the only fields visits needs.
354 visits->push_back(std::make_pair(recent_visits[i].visit_time,
722 // Update the recent visits information or schedule the update
729 // Make sure the private data is going to get as many recent visits as
996 const VisitInfoVector& visits(iter->second.visits);
997 for (VisitInfoVector::const_iterator visit_iter = visits.begin();
998 visit_iter != visits.end(); ++visit_iter) {
1179 // Restore visits list.
1180 VisitInfoVector visits;
1181 visits.reserve(iter->visits_size());
1183 visits.push_back(std::make_pair(
1184 base::Time::FromInternalValue(iter->visits(i).visit_time()),
1185 ui::PageTransitionFromInt(iter->visits(i).transition_type())));
1187 history_info_map_[history_id].visits = visits;
1305 const VisitInfoVector& visits = hist_pos->second.visits;
1309 ScoredHistoryMatch match(hist_item, visits, languages_, lower_string_,