summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-28 19:29:10 +0000
committerjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-28 19:29:10 +0000
commit87967fe6c904a8f8189a7e9d9710ca9a62b46336 (patch)
tree8021285be7a30161288c77b65e2c3e3e9562cfdd
parent359e88bc6b5c70a789b0f5bea155954f0660a232 (diff)
downloadchromium_src-87967fe6c904a8f8189a7e9d9710ca9a62b46336.zip
chromium_src-87967fe6c904a8f8189a7e9d9710ca9a62b46336.tar.gz
chromium_src-87967fe6c904a8f8189a7e9d9710ca9a62b46336.tar.bz2
Coverity: Initialize message_response_timeout_ in the constructor.
CID=1504 BUG=none TEST=none Review URL: http://codereview.chromium.org/223028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27390 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/hang_monitor/hung_window_detector.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/browser/hang_monitor/hung_window_detector.cc b/chrome/browser/hang_monitor/hung_window_detector.cc
index 947a3f7..73b84a8 100644
--- a/chrome/browser/hang_monitor/hung_window_detector.cc
+++ b/chrome/browser/hang_monitor/hung_window_detector.cc
@@ -19,6 +19,7 @@ const wchar_t HungWindowDetector::kHungChildWindowTimeout[] =
HungWindowDetector::HungWindowDetector(HungWindowNotification* notification)
: notification_(notification),
top_level_window_(NULL),
+ message_response_timeout_(0),
enumerating_(false) {
DCHECK(NULL != notification_);
}