| Index: components/data_reduction_proxy/core/common/data_reduction_proxy_client_config_parser_unittest.cc
|
| diff --git a/components/data_reduction_proxy/core/common/data_reduction_proxy_client_config_parser_unittest.cc b/components/data_reduction_proxy/core/common/data_reduction_proxy_client_config_parser_unittest.cc
|
| index 90bf1257126551524250fa30c021352b933a57d9..3989de5c3bcde2008d1dade16c6a1809b0551dff 100644
|
| --- a/components/data_reduction_proxy/core/common/data_reduction_proxy_client_config_parser_unittest.cc
|
| +++ b/components/data_reduction_proxy/core/common/data_reduction_proxy_client_config_parser_unittest.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "components/data_reduction_proxy/core/common/data_reduction_proxy_client_config_parser.h"
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
|
|
| #include "base/time/time.h"
|
| @@ -36,8 +38,8 @@ TEST_F(DataReductionProxyClientConfigParserTest, TimeDeltaToFromDuration) {
|
| const struct {
|
| std::string test_name;
|
| base::TimeDelta time_delta;
|
| - int64 seconds;
|
| - int32 nanos;
|
| + int64_t seconds;
|
| + int32_t nanos;
|
| } tests[] = {
|
| {
|
| "Second", base::TimeDelta::FromSeconds(1), 1, 0,
|
|
|