summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-12 03:16:08 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-12 03:16:08 +0000
commit05c18e87bbb87f10721fc4f3dbbd182349ebfa28 (patch)
treed8672e6bc04ae44fd9f44c01285cb4e535719c75 /chrome
parent997a036fbf7139a4342cd7da3163274b02fc67c1 (diff)
downloadchromium_src-05c18e87bbb87f10721fc4f3dbbd182349ebfa28.zip
chromium_src-05c18e87bbb87f10721fc4f3dbbd182349ebfa28.tar.gz
chromium_src-05c18e87bbb87f10721fc4f3dbbd182349ebfa28.tar.bz2
Add more info to a dcheck to see why DuplicateHandle is failing on the buildbot.
Review URL: http://codereview.chromium.org/42109 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11514 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/plugin/webplugin_proxy.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/plugin/webplugin_proxy.cc b/chrome/plugin/webplugin_proxy.cc
index c8e48d5..352e287 100644
--- a/chrome/plugin/webplugin_proxy.cc
+++ b/chrome/plugin/webplugin_proxy.cc
@@ -51,7 +51,8 @@ WebPluginProxy::WebPluginProxy(
FALSE,
0);
DCHECK(result) <<
- "Couldn't duplicate the modal dialog handle for the plugin.";
+ "Couldn't duplicate the modal dialog handle for the plugin." \
+ "handle: " << channel->renderer_handle() << ". err: " << GetLastError();
modal_dialog_event_.reset(new base::WaitableEvent(event));
}