From b3243a1595619b7c5056403aa485aae4ffdfee44 Mon Sep 17 00:00:00 2001 From: "jschuh@chromium.org" Date: Sun, 15 Apr 2012 04:12:02 +0000 Subject: I accidentally converted a DCHECK to a CHECK when I landed r132303 Apparently it really should be a DCHECK. TBR=jam@chromium.org BUG=123495 BUG=119250 Review URL: http://codereview.chromium.org/10094003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132356 0039d316-1c4b-4281-b951-d872f2087c98 --- content/renderer/webplugin_delegate_proxy.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/renderer/webplugin_delegate_proxy.cc') diff --git a/content/renderer/webplugin_delegate_proxy.cc b/content/renderer/webplugin_delegate_proxy.cc index b6ff543..16739b3 100644 --- a/content/renderer/webplugin_delegate_proxy.cc +++ b/content/renderer/webplugin_delegate_proxy.cc @@ -505,7 +505,7 @@ static void CopyTransportDIBHandleForMessage( *handle_out = NULL; sandbox::BrokerDuplicateHandle(handle_in, peer_pid, handle_out, FILE_MAP_READ | FILE_MAP_WRITE, 0); - CHECK(*handle_out != NULL); + DCHECK(*handle_out != NULL); #else // Don't need to do anything special for other platforms. *handle_out = handle_in; -- cgit v1.1