Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Unified Diff: components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc

Issue 1074293003: Use int64 instead of int32 for response sizes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reuploading to try to fix corrupt issue Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc
index 3c9ebefd54ba877b608680514af818ae412ae3d6..62b09d1e768fd17e71d3153fccc19d6962dd7c5a 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc
@@ -138,8 +138,8 @@ DataReductionProxyIOData::CreateNetworkDelegate(
}
void DataReductionProxyIOData::UpdateContentLengths(
- int received_content_length,
- int original_content_length,
+ int64 received_content_length,
+ int64 original_content_length,
bool data_reduction_proxy_enabled,
DataReductionProxyRequestType request_type) {
DCHECK(io_task_runner_->BelongsToCurrentThread());

Powered by Google App Engine
This is Rietveld 408576698