| Index: content/child/resource_dispatcher.cc
|
| diff --git a/content/child/resource_dispatcher.cc b/content/child/resource_dispatcher.cc
|
| index 31e6f6a9d9731ebda63f61e955f1ee0ac971f160..9d2001c1c8d822aab901b14069256d36d48e9277 100644
|
| --- a/content/child/resource_dispatcher.cc
|
| +++ b/content/child/resource_dispatcher.cc
|
| @@ -451,7 +451,8 @@ void ResourceDispatcher::OnReceivedData(const IPC::Message& message,
|
|
|
| void ResourceDispatcher::OnDownloadedData(const IPC::Message& message,
|
| int request_id,
|
| - int data_len) {
|
| + int data_len,
|
| + int encoded_data_length) {
|
| // Acknowledge the reception of this message.
|
| message_sender()->Send(
|
| new ResourceHostMsg_DataDownloaded_ACK(message.routing_id(), request_id));
|
| @@ -460,7 +461,7 @@ void ResourceDispatcher::OnDownloadedData(const IPC::Message& message,
|
| if (!request_info)
|
| return;
|
|
|
| - request_info->peer->OnDownloadedData(data_len);
|
| + request_info->peer->OnDownloadedData(data_len, encoded_data_length);
|
| }
|
|
|
| void ResourceDispatcher::OnReceivedRedirect(
|
|
|