Index: content/browser/loader/resource_dispatcher_host_impl.cc |
diff --git a/content/browser/loader/resource_dispatcher_host_impl.cc b/content/browser/loader/resource_dispatcher_host_impl.cc |
index e594cb76d5aef0b6545234d41d7bfa1bb0eee8c1..d9597adf70950edefdbbdccdcce7291bedf08425 100644 |
--- a/content/browser/loader/resource_dispatcher_host_impl.cc |
+++ b/content/browser/loader/resource_dispatcher_host_impl.cc |
@@ -1576,7 +1576,7 @@ void ResourceDispatcherHostImpl::BeginRequest( |
request_data.enable_load_timing, request_data.enable_upload_progress, |
do_not_prompt_for_login, request_data.referrer_policy, |
request_data.visiblity_state, resource_context, filter_->GetWeakPtr(), |
- report_raw_headers, !is_sync_load, |
+ report_raw_headers, report_raw_headers, !is_sync_load, |
Charlie Reis
2016/05/11 22:30:23
Why is this passed in twice?
Maybe it would be cl
estark
2016/05/12 00:16:55
Daniel: sorry, I wasn't clear; I was suggesting th
dwaxweiler
2016/05/12 07:28:16
Ah, okay, I will add a comment. Thanks for the exp
|
IsUsingLoFi(request_data.lofi_state, delegate_, *new_request, |
resource_context, |
request_data.resource_type == RESOURCE_TYPE_MAIN_FRAME), |
@@ -1875,6 +1875,7 @@ ResourceRequestInfoImpl* ResourceDispatcherHostImpl::CreateRequestInfo( |
context, |
base::WeakPtr<ResourceMessageFilter>(), // filter |
false, // report_raw_headers |
+ false, // send_extra_certificate_info |
true, // is_async |
false, // is_using_lofi |
std::string()); // original_headers |
@@ -2298,6 +2299,7 @@ void ResourceDispatcherHostImpl::BeginNavigationRequest( |
blink::WebPageVisibilityStateVisible, resource_context, |
base::WeakPtr<ResourceMessageFilter>(), // filter |
false, // request_data.report_raw_headers |
+ false, |
Charlie Reis
2016/05/11 22:30:23
Please document this one like the others.
|
true, // is_async |
IsUsingLoFi(info.common_params.lofi_state, delegate_, *new_request, |
resource_context, info.is_main_frame), |