| Index: chrome/browser/history/history_types.cc
|
| ===================================================================
|
| --- chrome/browser/history/history_types.cc (revision 56942)
|
| +++ chrome/browser/history/history_types.cc (working copy)
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2010 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2006-2008 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.
|
|
|
| @@ -238,4 +238,10 @@
|
| }
|
| }
|
|
|
| +Time AutocompleteAgeThreshold() {
|
| + Time recent_threshold =
|
| + Time::Now() - TimeDelta::FromDays(kLowQualityMatchAgeLimitInDays);
|
| + return recent_threshold;
|
| +}
|
| +
|
| } // namespace history
|
|
|