| Index: chrome/browser/history/history_types.h
|
| ===================================================================
|
| --- chrome/browser/history/history_types.h (revision 11260)
|
| +++ chrome/browser/history/history_types.h (working copy)
|
| @@ -377,6 +377,9 @@
|
| void set_first_time_searched(base::Time t) { first_time_searched_ = t; }
|
| // Note: If you need end_time_searched, it can be added.
|
|
|
| + void set_reached_beginning(bool reached) { reached_beginning_ = reached; }
|
| + bool reached_beginning() { return reached_beginning_; }
|
| +
|
| size_t size() const { return results_.size(); }
|
|
|
| URLResult& operator[](size_t i) { return *results_[i]; }
|
| @@ -431,6 +434,9 @@
|
|
|
| base::Time first_time_searched_;
|
|
|
| + // Whether the query reaches the beginning of the database.
|
| + bool reached_beginning_;
|
| +
|
| // The ordered list of results. The pointers inside this are owned by this
|
| // QueryResults object.
|
| URLResultVector results_;
|
|
|