| Index: chrome/browser/history/in_memory_url_index.cc
|
| diff --git a/chrome/browser/history/in_memory_url_index.cc b/chrome/browser/history/in_memory_url_index.cc
|
| index a3cb4f882f116ae202e0f96860829c35f9ed8219..27ce3c847bcec3585f67622a66dbb452e596734b 100644
|
| --- a/chrome/browser/history/in_memory_url_index.cc
|
| +++ b/chrome/browser/history/in_memory_url_index.cc
|
| @@ -157,9 +157,12 @@ bool InMemoryURLIndex::GetCacheFilePath(FilePath* file_path) {
|
| // Querying --------------------------------------------------------------------
|
|
|
| ScoredHistoryMatches InMemoryURLIndex::HistoryItemsForTerms(
|
| - const string16& term_string) {
|
| + const string16& term_string,
|
| + size_t cursor_position) {
|
| return private_data_->HistoryItemsForTerms(
|
| - term_string, BookmarkModelFactory::GetForProfile(profile_));
|
| + term_string,
|
| + cursor_position,
|
| + BookmarkModelFactory::GetForProfile(profile_));
|
| }
|
|
|
| // Updating --------------------------------------------------------------------
|
|
|