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

Unified Diff: components/data_reduction_proxy/core/common/data_reduction_proxy_client_config_parser_unittest.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/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,

Powered by Google App Engine
This is Rietveld 408576698