summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-24 19:50:44 +0000
committerjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-24 19:50:44 +0000
commitb2510af5c03ec40348a0042d0b08f211b3428f0a (patch)
tree5bbec63ba3c9582532dd419fbf7ea07b87c21e6b
parent95e678be0bbaeaef3d0263a4b11c735e9f844d5b (diff)
downloadchromium_src-b2510af5c03ec40348a0042d0b08f211b3428f0a.zip
chromium_src-b2510af5c03ec40348a0042d0b08f211b3428f0a.tar.gz
chromium_src-b2510af5c03ec40348a0042d0b08f211b3428f0a.tar.bz2
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
-rw-r--r--chrome/browser/autocomplete/history_contents_provider.h6
1 files changed, 6 insertions, 0 deletions
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) {
}