summaryrefslogtreecommitdiffstats
path: root/base/win_util.cc
diff options
context:
space:
mode:
authorjcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-11 23:26:30 +0000
committerjcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-11 23:26:30 +0000
commitd875230d182c69e258f9558ff10a09062712e4e6 (patch)
tree661d3a68a99eb065d40a26e7d5f3f04845c6b212 /base/win_util.cc
parent5acdfef617e0c2dd01467420d1469f4ebfb37791 (diff)
downloadchromium_src-d875230d182c69e258f9558ff10a09062712e4e6.zip
chromium_src-d875230d182c69e258f9558ff10a09062712e4e6.tar.gz
chromium_src-d875230d182c69e258f9558ff10a09062712e4e6.tar.bz2
Turning on the tracking of double-delete of HWND in the hope of catching one that would be the cause of the infamous NCDestroy crasher (bug #4714).
Review URL: http://codereview.chromium.org/20269 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9611 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/win_util.cc')
-rw-r--r--base/win_util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/win_util.cc b/base/win_util.cc
index e18007b..8373f4c 100644
--- a/base/win_util.cc
+++ b/base/win_util.cc
@@ -407,7 +407,7 @@ void NotifyHWNDDestruction(const tracked_objects::Location& from_here,
birth_iter->second.Write(true, true, &allocation);
death_iter->second.Write(true, true, &first_delete);
from_here.Write(true, true, &second_delete);
- NOTREACHED() << "Double delete of an HWND. Please file a bug with info on "
+ LOG(FATAL) << "Double delete of an HWND. Please file a bug with info on "
"how you got that assertion and the following information:\n"
"Double delete of HWND 0x" << hwnd << "\n" <<
"Allocated at " << allocation << "\n" <<