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

Unified Diff: components/certificate_reporting/error_reporter_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/certificate_reporting/error_reporter_unittest.cc
diff --git a/components/certificate_reporting/error_reporter_unittest.cc b/components/certificate_reporting/error_reporter_unittest.cc
index 4d5b623d96bca5830cd2fafd5c2a6abf652874fa..ac8ec389083057f075549473a03fa0d6a4dab108 100644
--- a/components/certificate_reporting/error_reporter_unittest.cc
+++ b/components/certificate_reporting/error_reporter_unittest.cc
@@ -4,6 +4,9 @@
#include "components/certificate_reporting/error_reporter.h"
+#include <stdint.h>
+#include <string.h>
+
#include <set>
#include <string>
@@ -22,7 +25,7 @@ namespace {
const char kDummyHttpReportUri[] = "http://example.test";
const char kDummyHttpsReportUri[] = "https://example.test";
const char kDummyReport[] = "a dummy report";
-const uint32 kServerPublicKeyTestVersion = 16;
+const uint32_t kServerPublicKeyTestVersion = 16;
// A mock CertificateReportSender that keeps track of the last report
// sent.
« no previous file with comments | « components/certificate_reporting/error_reporter.cc ('k') | components/certificate_transparency/log_proof_fetcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698