Index: content/browser/renderer_host/resource_dispatcher_host.cc |
diff --git a/content/browser/renderer_host/resource_dispatcher_host.cc b/content/browser/renderer_host/resource_dispatcher_host.cc |
index d915806d302b3dcf87634bac2f52792debf74718..d399113ba20a2caa99e15fa06cb292e62eaf0ec0 100644 |
--- a/content/browser/renderer_host/resource_dispatcher_host.cc |
+++ b/content/browser/renderer_host/resource_dispatcher_host.cc |
@@ -618,7 +618,7 @@ void ResourceDispatcherHost::BeginRequest( |
if (request_data.upload_data) { |
request->set_upload(request_data.upload_data); |
// This results in performing file IO. crbug.com/112607. |
- upload_size = request_data.upload_data->GetContentLength(); |
+ upload_size = request_data.upload_data->GetContentLengthSyncHack(); |
} |
// Install a CrossSiteResourceHandler if this request is coming from a |