| Index: chrome/browser/dom_ui/history_ui.cc
|
| ===================================================================
|
| --- chrome/browser/dom_ui/history_ui.cc (revision 30836)
|
| +++ chrome/browser/dom_ui/history_ui.cc (working copy)
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2009 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -148,9 +148,6 @@
|
| options.end_time = base::Time::Now().LocalMidnight();
|
| options.end_time -= base::TimeDelta::FromDays(day - 1);
|
|
|
| - // As we're querying per-day, we can turn entry repeats off.
|
| - options.most_recent_visit_only = true;
|
| -
|
| // Need to remember the query string for our results.
|
| search_text_ = std::wstring();
|
|
|
| @@ -174,10 +171,8 @@
|
| // Set the query ranges for the given month.
|
| history::QueryOptions options = CreateMonthQueryOptions(month);
|
|
|
| - // When searching, limit the number of results returned and only show the
|
| - // most recent matches.
|
| + // When searching, limit the number of results returned.
|
| options.max_count = kMaxSearchResults;
|
| - options.most_recent_visit_only = true;
|
|
|
| // Need to remember the query string for our results.
|
| search_text_ = query;
|
|
|