Chromium Code Reviews| Index: net/url_request/url_request_http_job.cc |
| diff --git a/net/url_request/url_request_http_job.cc b/net/url_request/url_request_http_job.cc |
| index 4f57a31295057567bf7f5cd53b3ab9f36b609447..76ece0c7bcdbca9907431642628257b6e4e21493 100644 |
| --- a/net/url_request/url_request_http_job.cc |
| +++ b/net/url_request/url_request_http_job.cc |
| @@ -515,7 +515,7 @@ void URLRequestHttpJob::AddCookieHeaderAndStart() { |
| base::Bind(&URLRequestHttpJob::CheckCookiePolicyAndLoad, |
| weak_factory_.GetWeakPtr())); |
| } else { |
| - DoLoadCookies(); |
| + CheckCookiePolicyAndLoad(CookieList()); |
|
droger
2012/11/23 16:00:12
I pass an empty list as 'default' argument here, a
erikwright (departed)
2012/11/27 05:17:17
ChromeNetworkDelegate passes the list to TabSpecif
cbentzel
2012/11/28 14:36:42
Out of curiosity: is the Cookie header already sup
droger
2012/11/28 14:47:44
Looking at the code, the headers are set a bit aft
erikwright (departed)
2012/11/30 16:43:52
The problem is that the CookieList is cookies with
|
| } |
| } else { |
| DoStartTransaction(); |