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

Unified Diff: components/data_reduction_proxy/core/browser/data_reduction_proxy_experiments_stats.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_experiments_stats.cc
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_experiments_stats.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_experiments_stats.cc
index ddf3de1d1bcb390da8c55a2161abeb02444505b8..9abb177b5a7ee4834cb822078b698deedda77d98 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_experiments_stats.cc
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_experiments_stats.cc
@@ -46,8 +46,8 @@ void DataReductionProxyExperimentsStats::InitializeOnIOThread() {
void DataReductionProxyExperimentsStats::RecordBytes(
const base::Time& request_time,
DataReductionProxyRequestType request_type,
- int64 received_content_length,
- int64 original_content_length) {
+ int64_t received_content_length,
+ int64_t original_content_length) {
DCHECK(thread_checker_.CalledOnValidThread());
if (config_retrieval_params_) {
// Only measure requests which flowed through the Data Reduction Proxy.

Powered by Google App Engine
This is Rietveld 408576698