Home | History | Annotate | Download | only in history

Lines Matching full:time

58   // should be created and dropped at the same time.
73 // Create an index over time so that we can efficiently find the visits in a
74 // given time range (most history views are time-based). Ignore failures
92 visit->visit_time = base::Time::FromInternalValue(statement.ColumnInt64(2));
246 void VisitDatabase::GetAllVisitsInRange(base::Time begin_time,
247 base::Time end_time,
270 base::Time begin_time,
271 base::Time end_time,
298 void VisitDatabase::GetVisibleVisitsInRange(base::Time begin_time,
299 base::Time end_time,
315 // Note that we use min/max values for querying unlimited ranges of time using
316 // the same statement. Since the time has an index, this will be about the
437 base::Time* first_visit) {
473 *first_visit = base::Time::FromInternalValue(statement.ColumnInt64(0));
478 bool VisitDatabase::GetStartDate(base::Time* first_visit) {
482 *first_visit = base::Time::Now();
485 *first_visit = base::Time::FromInternalValue(statement.ColumnInt64(0));