diff options
author | tommi@chromium.org <tommi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-29 23:59:42 +0000 |
---|---|---|
committer | tommi@chromium.org <tommi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-29 23:59:42 +0000 |
commit | 49cffd6276c6decb35dbf2db1b07f581d7c9d5e8 (patch) | |
tree | ce7fabac8485f4e69fa8fdce23a97cf6e58468e1 /chrome_frame/urlmon_url_request.cc | |
parent | 2af51006181a9e32aca6511b0a1b73f813098a0f (diff) | |
download | chromium_src-49cffd6276c6decb35dbf2db1b07f581d7c9d5e8.zip chromium_src-49cffd6276c6decb35dbf2db1b07f581d7c9d5e8.tar.gz chromium_src-49cffd6276c6decb35dbf2db1b07f581d7c9d5e8.tar.bz2 |
Unit test for form download (POST). This replicates the issue reported in bug 36694. Test will be disabled until we fix the issue.
TEST=none. (test is disabled for now)
BUG=36694
Review URL: http://codereview.chromium.org/1541003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43019 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/urlmon_url_request.cc')
-rw-r--r-- | chrome_frame/urlmon_url_request.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome_frame/urlmon_url_request.cc b/chrome_frame/urlmon_url_request.cc index 3b15628..9d6ff10 100644 --- a/chrome_frame/urlmon_url_request.cc +++ b/chrome_frame/urlmon_url_request.cc @@ -953,7 +953,7 @@ void UrlmonUrlRequestManager::DownloadRequestInHost(int request_id) { if (request) { ScopedComPtr<IMoniker> moniker; request->StealMoniker(moniker.Receive()); - DCHECK(moniker); + DLOG_IF(ERROR, moniker == NULL) << __FUNCTION__ << " No moniker!"; if (moniker) { // We use SendMessage and not PostMessage to make sure that if the // notification window does not handle the message we won't leak |