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

Unified Diff: components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client_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/browser/data_reduction_proxy_config_service_client_unittest.cc
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client_unittest.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client_unittest.cc
index 58f36e42946d2967381bc7e79812e3cc704939a1..d0b03d75b1c6caa6464c921e0e08567160406453 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client_unittest.cc
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client_unittest.cc
@@ -4,6 +4,9 @@
#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_client.h"
+#include <stddef.h>
+#include <stdint.h>
+
#include <string>
#include <vector>
@@ -62,8 +65,8 @@ namespace {
// Creates a new ClientConfig from the given parameters.
ClientConfig CreateConfig(const std::string& session_key,
- int64 expire_duration_seconds,
- int64 expire_duration_nanoseconds,
+ int64_t expire_duration_seconds,
+ int64_t expire_duration_nanoseconds,
ProxyServer_ProxyScheme primary_scheme,
const std::string& primary_host,
int primary_port,

Powered by Google App Engine
This is Rietveld 408576698