| 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 28d3a5ac3a1b506600c2989fb59d977dc66bac8f..903c49d305e402720f3110a2ea3a796380ebe957 100644
|
| --- a/net/url_request/url_request_http_job.cc
|
| +++ b/net/url_request/url_request_http_job.cc
|
| @@ -616,14 +616,7 @@ void URLRequestHttpJob::AddCookieHeaderAndStart() {
|
| void URLRequestHttpJob::DoLoadCookies() {
|
| CookieOptions options;
|
| options.set_include_httponly();
|
| -
|
| - // TODO(mkwst): Drop this `if` once we decide whether or not to ship
|
| - // first-party cookies: https://crbug.com/459154
|
| - if (network_delegate() &&
|
| - network_delegate()->FirstPartyOnlyCookieExperimentEnabled())
|
| - options.set_first_party_url(request_->first_party_for_cookies());
|
| - else
|
| - options.set_include_first_party_only();
|
| + options.set_first_party_url(request_->first_party_for_cookies());
|
|
|
| request_->context()->cookie_store()->GetCookiesWithOptionsAsync(
|
| request_->url(), options, base::Bind(&URLRequestHttpJob::OnCookiesLoaded,
|
|
|