| Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_stats.h
|
| diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_stats.h b/components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_stats.h
|
| index 3f0adb2666f1b88b8d7c016ec9b50efb832884ce..3f935565d6b850ca433be29397da53cafff88d5b 100644
|
| --- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_stats.h
|
| +++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_bypass_stats.h
|
| @@ -5,8 +5,11 @@
|
| #ifndef COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_BYPASS_STATS_H_
|
| #define COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_BYPASS_STATS_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "base/callback.h"
|
| #include "base/gtest_prod_util.h"
|
| +#include "base/macros.h"
|
| #include "components/data_reduction_proxy/core/common/data_reduction_proxy_headers.h"
|
| #include "net/base/host_port_pair.h"
|
| #include "net/base/network_change_notifier.h"
|
| @@ -124,10 +127,9 @@ class DataReductionProxyBypassStats
|
| void OnNetworkChanged(
|
| net::NetworkChangeNotifier::ConnectionType type) override;
|
|
|
| - void RecordBypassedBytes(
|
| - DataReductionProxyBypassType bypass_type,
|
| - BypassedBytesType bypassed_bytes_type,
|
| - int64 content_length);
|
| + void RecordBypassedBytes(DataReductionProxyBypassType bypass_type,
|
| + BypassedBytesType bypassed_bytes_type,
|
| + int64_t content_length);
|
|
|
| DataReductionProxyConfig* data_reduction_proxy_config_;
|
|
|
|
|