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

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

Issue 1546143002: Switch to standard integer types in components/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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_metrics.cc
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_metrics.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_metrics.cc
index 39efaa97b4985c1c74528d924027fd8d99bf5e14..452e759b4134027c9e37b31d889578e36e7ff8e9 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_metrics.cc
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_metrics.cc
@@ -4,7 +4,6 @@
#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_metrics.h"
-#include "base/basictypes.h"
#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_config.h"
#include "components/data_reduction_proxy/core/common/data_reduction_proxy_headers.h"
#include "net/base/load_flags.h"
@@ -60,10 +59,10 @@ DataReductionProxyRequestType GetDataReductionProxyRequestType(
return UNKNOWN_TYPE;
}
-int64 GetAdjustedOriginalContentLength(
+int64_t GetAdjustedOriginalContentLength(
DataReductionProxyRequestType request_type,
- int64 original_content_length,
- int64 received_content_length) {
+ int64_t original_content_length,
+ int64_t received_content_length) {
// Since there was no indication of the original content length, presume
// it is no different from the number of bytes read.
if (original_content_length == -1 ||

Powered by Google App Engine
This is Rietveld 408576698