| Index: components/omnibox/history_quick_provider.cc
|
| diff --git a/components/omnibox/history_quick_provider.cc b/components/omnibox/history_quick_provider.cc
|
| index 40037b11d716019f5133b048f546898cc2675257..a6b9f16bb9a2cd6c08fa81779b934072e709fd53 100644
|
| --- a/components/omnibox/history_quick_provider.cc
|
| +++ b/components/omnibox/history_quick_provider.cc
|
| @@ -46,12 +46,10 @@ const char kBug464926CrashKey[] = "bug-464926-info";
|
|
|
| bool HistoryQuickProvider::disabled_ = false;
|
|
|
| -HistoryQuickProvider::HistoryQuickProvider(
|
| - AutocompleteProviderClient* client,
|
| - InMemoryURLIndex* in_memory_url_index)
|
| +HistoryQuickProvider::HistoryQuickProvider(AutocompleteProviderClient* client)
|
| : HistoryProvider(AutocompleteProvider::TYPE_HISTORY_QUICK, client),
|
| languages_(client->GetAcceptLanguages()),
|
| - in_memory_url_index_(in_memory_url_index) {
|
| + in_memory_url_index_(client->GetInMemoryURLIndex()) {
|
| }
|
|
|
| void HistoryQuickProvider::Start(const AutocompleteInput& input,
|
|
|