Chromium Code Reviews| Index: content/browser/loader/async_resource_handler.cc |
| diff --git a/content/browser/loader/async_resource_handler.cc b/content/browser/loader/async_resource_handler.cc |
| index 7e3bd2ef99d5ef2bf030ced5a4ddcebcfa8b35b5..886c49a88ff761dc2ab13c2f48c217e14906cc3d 100644 |
| --- a/content/browser/loader/async_resource_handler.cc |
| +++ b/content/browser/loader/async_resource_handler.cc |
| @@ -108,18 +108,12 @@ bool AsyncResourceHandler::OnMessageReceived(const IPC::Message& message, |
| return handled; |
| } |
| -void AsyncResourceHandler::OnFollowRedirect( |
| - int request_id, |
| - bool has_new_first_party_for_cookies, |
| - const GURL& new_first_party_for_cookies) { |
| +void AsyncResourceHandler::OnFollowRedirect(int request_id) { |
| if (!request()->status().is_success()) { |
| DVLOG(1) << "OnFollowRedirect for invalid request"; |
| return; |
| } |
| - if (has_new_first_party_for_cookies) |
| - request()->set_first_party_for_cookies(new_first_party_for_cookies); |
| - |
| ResumeIfDeferred(); |
| } |
| @@ -164,8 +158,13 @@ bool AsyncResourceHandler::OnRequestRedirected(int request_id, |
| reported_transfer_size_ = 0; |
| response->head.request_start = request()->creation_time(); |
| response->head.response_start = TimeTicks::Now(); |
| + // TODO(davidben): Is it necessary to pass the new first party URL for |
| + // cookies? The only case where it can change is top-level navigation requests |
| + // and hopefully those will eventually all be owned by the browser. It's |
| + // possible this is still needed while renderer-owned ones exist. |
|
davidben
2014/05/05 23:32:41
I actually wouldn't be too surprised if this could
Charlie Reis
2014/05/08 20:43:21
I don't know the uses of that value myself, so it
davidben
2014/05/09 22:08:04
Part of the use is for the DCHECK, but now that th
|
| return info->filter()->Send(new ResourceMsg_ReceivedRedirect( |
| - request_id, new_url, response->head)); |
| + request_id, new_url, request()->first_party_for_cookies(), |
| + response->head)); |
| } |
| bool AsyncResourceHandler::OnResponseStarted(int request_id, |