diff options
author | brettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-09 23:12:31 +0000 |
---|---|---|
committer | brettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-09 23:12:31 +0000 |
commit | 654e494ef00266ed802db8cc7f5464fa68615815 (patch) | |
tree | 58cab9f4dde051acf5e5505d0bcf6e176e15a51e /chrome/browser/autocomplete/autocomplete.cc | |
parent | 1c571ca94c8121957e326fbcd2b9c5c497cd5a12 (diff) | |
download | chromium_src-654e494ef00266ed802db8cc7f5464fa68615815.zip chromium_src-654e494ef00266ed802db8cc7f5464fa68615815.tar.gz chromium_src-654e494ef00266ed802db8cc7f5464fa68615815.tar.bz2 |
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
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@100530 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autocomplete/autocomplete.cc')
-rw-r--r-- | chrome/browser/autocomplete/autocomplete.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/autocomplete/autocomplete.cc b/chrome/browser/autocomplete/autocomplete.cc index 8d1a363..73928fb 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::kDisableHistoryQuickProvider); + bool hqp_enabled = CommandLine::ForCurrentProcess()->HasSwitch( + switches::kEnableHistoryQuickProvider); if (hqp_enabled) providers_.push_back(new HistoryQuickProvider(this, profile)); if (CommandLine::ForCurrentProcess()->HasSwitch( |