Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9679)

Unified Diff: chrome_frame/urlmon_url_request.cc

Issue 546104: Fix FullTabModeIE_ChromeFrameDeleteCookieTest. The problem was that a domain... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome_frame/test/data/fulltab_delete_cookie_test.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/urlmon_url_request.cc
===================================================================
--- chrome_frame/urlmon_url_request.cc (revision 36629)
+++ chrome_frame/urlmon_url_request.cc (working copy)
@@ -650,6 +650,8 @@
const wchar_t* response_headers, const wchar_t* request_headers,
wchar_t** additional_headers) {
DCHECK(worker_thread_ != NULL);
+ DLOG(INFO) << __FUNCTION__ << " " << url() << std::endl << " headers: " <<
+ std::endl << response_headers;
DCHECK_EQ(PlatformThread::CurrentId(), worker_thread_->thread_id());
if (!binding_) {
@@ -693,6 +695,9 @@
std::string persistent_cookies;
DWORD cookie_size = 0; // NOLINT
+ // Note that there's really no way for us here to distinguish session cookies
+ // from persistent cookies here. Session cookies should get filtered
+ // out on the chrome side as to not be added again.
InternetGetCookie(url_for_persistent_cookies.c_str(), NULL, NULL,
&cookie_size);
if (cookie_size) {
« no previous file with comments | « chrome_frame/test/data/fulltab_delete_cookie_test.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698