summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-03 22:35:04 +0000
committerananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-03 22:35:04 +0000
commit233996342484eff68620e24fb701542a1cf2932c (patch)
treeb9c7e6d0fd8ac8611cd2441a1c090e75da9a4429
parent3a6395c2a82afc6aeb526367fdf10e425cfaa3b6 (diff)
downloadchromium_src-233996342484eff68620e24fb701542a1cf2932c.zip
chromium_src-233996342484eff68620e24fb701542a1cf2932c.tar.gz
chromium_src-233996342484eff68620e24fb701542a1cf2932c.tar.bz2
Removing the IsHungAppWindow DCHECK as it does not seem to be indicating
anything useful about the window at this point. It seems to fire at times even when SendMessageTimeout succeeds on the plugin window, which indicates some race condition between Windows updating its state about whether the window is hung. Fixes http://code.google.com/p/chromium/issues/detail?id=5066 Bug=5066 R=nsylvain Review URL: http://codereview.chromium.org/12920 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6318 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/hang_monitor/hung_window_detector.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/chrome/browser/hang_monitor/hung_window_detector.cc b/chrome/browser/hang_monitor/hung_window_detector.cc
index 6f255b3..cd93c69 100644
--- a/chrome/browser/hang_monitor/hung_window_detector.cc
+++ b/chrome/browser/hang_monitor/hung_window_detector.cc
@@ -154,7 +154,6 @@ bool HungWindowDetector::CheckChildWindow(HWND child_window) {
}
}
} else {
- DCHECK(IsHungAppWindow(child_window) == false);
RemoveProp(child_window, kHungChildWindowTimeout);
}
}