From b2510af5c03ec40348a0042d0b08f211b3428f0a Mon Sep 17 00:00:00 2001 From: "jhawkins@chromium.org" Date: Thu, 24 Sep 2009 19:50:44 +0000 Subject: Coverity: Initialize the remaining members of HistoryContentsProvider. CID=1633 BUG=none TEST=none Review URL: http://codereview.chromium.org/223025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27111 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/autocomplete/history_contents_provider.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'chrome/browser/autocomplete') diff --git a/chrome/browser/autocomplete/history_contents_provider.h b/chrome/browser/autocomplete/history_contents_provider.h index 6d1dba1..49ca83e 100644 --- a/chrome/browser/autocomplete/history_contents_provider.h +++ b/chrome/browser/autocomplete/history_contents_provider.h @@ -23,6 +23,12 @@ class HistoryContentsProvider : public AutocompleteProvider { public: HistoryContentsProvider(ACProviderListener* listener, Profile* profile) : AutocompleteProvider(listener, profile, "HistoryContents"), + star_title_count_(0), + star_contents_count_(0), + title_count_(0), + contents_count_(0), + input_type_(AutocompleteInput::INVALID), + trim_http_(false), have_results_(false) { } -- cgit v1.1