diff options
author | tommi@chromium.org <tommi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-21 15:37:11 +0000 |
---|---|---|
committer | tommi@chromium.org <tommi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-21 15:37:11 +0000 |
commit | 14e5bca82b5ac6f0a2b59d087d3f38e19017c127 (patch) | |
tree | 216afa47b5a6e9436010323c2df30145c9eb3947 /chrome_frame/http_negotiate.cc | |
parent | 9f71149c6d3188836bd1e4cfc3997a51b38a3f01 (diff) | |
download | chromium_src-14e5bca82b5ac6f0a2b59d087d3f38e19017c127.zip chromium_src-14e5bca82b5ac6f0a2b59d087d3f38e19017c127.tar.gz chromium_src-14e5bca82b5ac6f0a2b59d087d3f38e19017c127.tar.bz2 |
Fix FullTabModeIE_ChromeFrameDeleteCookieTest. The problem was that a domain cookie was being set twice although only set once by the server.
The test itself needed fixing as well as an extra check for domain cookies set by a different url than the current url.
There's one other problem remaining however which was initially reported in bug 30786 and I'll get on that next (bug reopened).
TEST=Run the FullTabModeIE_ChromeFrameDeleteCookieTest test.
BUG=32546, 30786
Review URL: http://codereview.chromium.org/546104
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36749 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/http_negotiate.cc')
-rw-r--r-- | chrome_frame/http_negotiate.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome_frame/http_negotiate.cc b/chrome_frame/http_negotiate.cc index f118baf..e725f3d 100644 --- a/chrome_frame/http_negotiate.cc +++ b/chrome_frame/http_negotiate.cc @@ -199,6 +199,8 @@ HRESULT HttpNegotiatePatch::BeginningTransaction( HRESULT HttpNegotiatePatch::OnResponse(IHttpNegotiate_OnResponse_Fn original, IHttpNegotiate* me, DWORD response_code, LPCWSTR response_header, LPCWSTR request_header, LPWSTR* additional_request_headers) { + DLOG(INFO) << __FUNCTION__ << " headers: " << std::endl << response_header; + HRESULT hr = original(me, response_code, response_header, request_header, additional_request_headers); return hr; |