From 689b56f8edbc0176edbc6d8e0a59bad3d93f69d2 Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Wed, 14 Sep 2011 22:49:10 +0000 Subject: Revert 100530 - Disable the in memory URL index. This is a temporary test to see if it affects crashes in Chrome. Review URL: http://codereview.chromium.org/7796011 TBR=brettw@google.com Review URL: http://codereview.chromium.org/7885050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101182 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/autocomplete/autocomplete.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chrome/browser/autocomplete') diff --git a/chrome/browser/autocomplete/autocomplete.cc b/chrome/browser/autocomplete/autocomplete.cc index 73928fb..8d1a363 100644 --- a/chrome/browser/autocomplete/autocomplete.cc +++ b/chrome/browser/autocomplete/autocomplete.cc @@ -790,8 +790,8 @@ AutocompleteController::AutocompleteController( providers_.push_back(search_provider_); // TODO(mrossetti): Remove the following and permanently modify the // HistoryURLProvider to not search titles once HQP is turned on permanently. - bool hqp_enabled = CommandLine::ForCurrentProcess()->HasSwitch( - switches::kEnableHistoryQuickProvider); + bool hqp_enabled = !CommandLine::ForCurrentProcess()->HasSwitch( + switches::kDisableHistoryQuickProvider); if (hqp_enabled) providers_.push_back(new HistoryQuickProvider(this, profile)); if (CommandLine::ForCurrentProcess()->HasSwitch( -- cgit v1.1