| 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
|
|
|
|
|