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

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

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.h
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_metrics.h b/components/data_reduction_proxy/core/browser/data_reduction_proxy_metrics.h
index 85dd909182b7a75a2a0be64629d3fb8756f2a3aa..fb91fd35e0146fc1695ca8b9f7e2b1fd02b73c58 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_metrics.h
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_metrics.h
@@ -5,9 +5,10 @@
#ifndef COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_METRICS_H_
#define COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_METRICS_H_
+#include <stdint.h>
+
#include <vector>
-#include "base/basictypes.h"
namespace net {
class ProxyConfig;
@@ -56,10 +57,10 @@ DataReductionProxyRequestType GetDataReductionProxyRequestType(
// Returns |received_content_length| as adjusted original content length if
// |original_content_length| has the invalid value (-1) or |request_type|
// is not |VIA_DATA_REDUCTION_PROXY|.
-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);
} // namespace data_reduction_proxy

Powered by Google App Engine
This is Rietveld 408576698