| Index: chrome/browser/history/history_backend.cc
|
| ===================================================================
|
| --- chrome/browser/history/history_backend.cc (revision 11594)
|
| +++ chrome/browser/history/history_backend.cc (working copy)
|
| @@ -640,6 +640,9 @@
|
| VisitRow visit_info(url_id, time, referring_visit, transition, 0);
|
| VisitID visit_id = db_->AddVisit(&visit_info);
|
|
|
| + if (visit_info.visit_time < first_recorded_time_)
|
| + first_recorded_time_ = visit_info.visit_time;
|
| +
|
| // Broadcast a notification of the visit.
|
| if (visit_id) {
|
| URLVisitedDetails* details = new URLVisitedDetails;
|
| @@ -717,6 +720,9 @@
|
| NOTREACHED() << "Adding visit failed.";
|
| return;
|
| }
|
| +
|
| + if (visit_info.visit_time < first_recorded_time_)
|
| + first_recorded_time_ = visit_info.visit_time;
|
| }
|
|
|
| // Broadcast a notification for typed URLs that have been modified. This
|
|
|