| Index: content/common/resource_messages.h
|
| diff --git a/content/common/resource_messages.h b/content/common/resource_messages.h
|
| index 5b23e55df50a6931fb2f80e2dae44cfad0b60ebd..50c828fa05ee10101d86f44b5e9314106d5716d5 100644
|
| --- a/content/common/resource_messages.h
|
| +++ b/content/common/resource_messages.h
|
| @@ -309,21 +309,19 @@ IPC_MESSAGE_CONTROL4(ResourceMsg_SetDataBuffer,
|
| // Sent when a chunk of data from a resource request is ready, and the resource
|
| // is expected to be small enough to fit in the inlined buffer.
|
| // The data is sent as a part of IPC message.
|
| -IPC_MESSAGE_CONTROL4(ResourceMsg_InlinedDataChunkReceived,
|
| +IPC_MESSAGE_CONTROL3(ResourceMsg_InlinedDataChunkReceived,
|
| int /* request_id */,
|
| std::vector<char> /* data */,
|
| - int /* encoded_data_length */,
|
| - int /* encoded_body_length */)
|
| + int /* encoded_data_length */)
|
|
|
| // Sent when some data from a resource request is ready. The data offset and
|
| // length specify a byte range into the shared memory buffer provided by the
|
| // SetDataBuffer message.
|
| -IPC_MESSAGE_CONTROL5(ResourceMsg_DataReceived,
|
| +IPC_MESSAGE_CONTROL4(ResourceMsg_DataReceived,
|
| int /* request_id */,
|
| int /* data_offset */,
|
| int /* data_length */,
|
| - int /* encoded_data_length */,
|
| - int /* encoded_body_length */)
|
| + int /* encoded_data_length */)
|
|
|
| // Sent when some data from a resource request has been downloaded to
|
| // file. This is only called in the 'download_to_file' case and replaces
|
|
|