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

Unified Diff: components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.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_settings.cc
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc
index fb91f44b33d88825408b44416621fa9f470fe509..9eddf3c94c6ca40a042cd1561563e1acd81966a6 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc
@@ -143,7 +143,7 @@ void DataReductionProxySettings::SetDataReductionProxyEnabled(bool enabled) {
}
}
-int64 DataReductionProxySettings::GetDataReductionLastUpdateTime() {
+int64_t DataReductionProxySettings::GetDataReductionLastUpdateTime() {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK(data_reduction_proxy_service_->compression_stats());
return
@@ -366,9 +366,9 @@ DataReductionProxySettings::GetDailyContentLengths(const char* pref_name) {
void DataReductionProxySettings::GetContentLengths(
unsigned int days,
- int64* original_content_length,
- int64* received_content_length,
- int64* last_update_time) {
+ int64_t* original_content_length,
+ int64_t* received_content_length,
+ int64_t* last_update_time) {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK(data_reduction_proxy_service_->compression_stats());

Powered by Google App Engine
This is Rietveld 408576698