| Index: net/http/http_network_transaction.cc
|
| diff --git a/net/http/http_network_transaction.cc b/net/http/http_network_transaction.cc
|
| index bbe48b2f9aa6ac1a76898aa73556f368e0600bbf..f060cd7485dff317ec198c842d3a22b412888531 100644
|
| --- a/net/http/http_network_transaction.cc
|
| +++ b/net/http/http_network_transaction.cc
|
| @@ -387,8 +387,8 @@ bool HttpNetworkTransaction::GetFullRequestHeaders(
|
| return true;
|
| }
|
|
|
| -int64 HttpNetworkTransaction::GetTotalReceivedBytes() const {
|
| - int64 total_received_bytes = total_received_bytes_;
|
| +int64_t HttpNetworkTransaction::GetTotalReceivedBytes() const {
|
| + int64_t total_received_bytes = total_received_bytes_;
|
| if (stream_)
|
| total_received_bytes += stream_->GetTotalReceivedBytes();
|
| return total_received_bytes;
|
|
|