Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(889)

Unified Diff: content/browser/histogram_message_filter.cc

Issue 10787042: Coverity: Initialize a member variable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/histogram_message_filter.cc
diff --git a/content/browser/histogram_message_filter.cc b/content/browser/histogram_message_filter.cc
index 959c280f5ff439846fcc61872373b5a10ee03113..5c7bd6b477a3cddbc169e0b5e7b8b9490d057522 100644
--- a/content/browser/histogram_message_filter.cc
+++ b/content/browser/histogram_message_filter.cc
@@ -11,7 +11,8 @@
namespace content {
-HistogramMessageFilter::HistogramMessageFilter() {
+HistogramMessageFilter::HistogramMessageFilter()
+ : process_type_(PROCESS_TYPE_UNKNOWN) {
sky 2012/07/17 22:10:55 It doesn't look like this field is used at all. Ca
James Hawkins 2012/07/18 15:24:25 Done.
}
void HistogramMessageFilter::OnChannelConnected(int32 peer_pid) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698