| Index: net/http/http_cache_transaction.cc
|
| diff --git a/net/http/http_cache_transaction.cc b/net/http/http_cache_transaction.cc
|
| index db3f4968911b47ec29167190cf429a69007e00d7..9dc77b04acb39a0e0acd6ff2af5fd5cf6c3d1a81 100644
|
| --- a/net/http/http_cache_transaction.cc
|
| +++ b/net/http/http_cache_transaction.cc
|
| @@ -522,8 +522,8 @@ bool HttpCache::Transaction::GetFullRequestHeaders(
|
| return false;
|
| }
|
|
|
| -int64 HttpCache::Transaction::GetTotalReceivedBytes() const {
|
| - int64 total_received_bytes = total_received_bytes_;
|
| +int64_t HttpCache::Transaction::GetTotalReceivedBytes() const {
|
| + int64_t total_received_bytes = total_received_bytes_;
|
| if (network_trans_)
|
| total_received_bytes += network_trans_->GetTotalReceivedBytes();
|
| return total_received_bytes;
|
|
|