Chromium Code Reviews| Index: content/browser/loader/resource_request_info_impl.cc |
| diff --git a/content/browser/loader/resource_request_info_impl.cc b/content/browser/loader/resource_request_info_impl.cc |
| index 20ce8d98cea9c631dfd396e810c0934062b839ea..fce356556f272cc01f49f44113d1bb9c3daff3d6 100644 |
| --- a/content/browser/loader/resource_request_info_impl.cc |
| +++ b/content/browser/loader/resource_request_info_impl.cc |
| @@ -56,6 +56,7 @@ void ResourceRequestInfo::AllocateForTesting(net::URLRequest* request, |
| resource_type, // resource_type |
| ui::PAGE_TRANSITION_LINK, // transition_type |
| false, // should_replace_current_entry |
| + FETCH_REDIRECT_MODE_FOLLOW, |
|
falken
2015/08/07 07:43:46
i'd follow the // fetch_redirect_mode convention h
horo
2015/08/07 09:42:22
Done.
|
| false, // is_download |
| false, // is_stream |
| allow_download, // allow_download |
| @@ -114,6 +115,7 @@ ResourceRequestInfoImpl::ResourceRequestInfoImpl( |
| ResourceType resource_type, |
| ui::PageTransition transition_type, |
| bool should_replace_current_entry, |
| + FetchRedirectMode fetch_redirect_mode, |
| bool is_download, |
| bool is_stream, |
| bool allow_download, |
| @@ -139,6 +141,7 @@ ResourceRequestInfoImpl::ResourceRequestInfoImpl( |
| parent_is_main_frame_(parent_is_main_frame), |
| parent_render_frame_id_(parent_render_frame_id), |
| should_replace_current_entry_(should_replace_current_entry), |
| + fetch_redirect_mode_(fetch_redirect_mode), |
| is_download_(is_download), |
| is_stream_(is_stream), |
| allow_download_(allow_download), |