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

Unified Diff: net/test/ct_test_util.cc

Issue 1841863002: Update monet. (Closed) Base URL: https://github.com/domokit/monet.git@master
Patch Set: Created 4 years, 9 months 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
« no previous file with comments | « net/ssl/ssl_info.h ('k') | net/test/embedded_test_server/embedded_test_server.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/test/ct_test_util.cc
diff --git a/net/test/ct_test_util.cc b/net/test/ct_test_util.cc
index 826f03fe755ee474fc46174a5ba90a78b8931ced..b7db76f2395b6c2fd1a3264d5aec5461ed89867a 100644
--- a/net/test/ct_test_util.cc
+++ b/net/test/ct_test_util.cc
@@ -4,6 +4,8 @@
#include "net/test/ct_test_util.h"
+#include <stdint.h>
+
#include <string>
#include <vector>
@@ -204,7 +206,7 @@ void GetX509CertSCT(scoped_refptr<SignedCertificateTimestamp>* sct_ref) {
// Time the log issued a SCT for this certificate, which is
// Fri Apr 5 10:04:16.089 2013
sct->timestamp = base::Time::UnixEpoch() +
- base::TimeDelta::FromMilliseconds(GG_INT64_C(1365181456089));
+ base::TimeDelta::FromMilliseconds(INT64_C(1365181456089));
sct->extensions.clear();
sct->signature.hash_algorithm = ct::DigitallySigned::HASH_ALGO_SHA256;
@@ -221,7 +223,7 @@ void GetPrecertSCT(scoped_refptr<SignedCertificateTimestamp>* sct_ref) {
// Time the log issued a SCT for this Precertificate, which is
// Fri Apr 5 10:04:16.275 2013
sct->timestamp = base::Time::UnixEpoch() +
- base::TimeDelta::FromMilliseconds(GG_INT64_C(1365181456275));
+ base::TimeDelta::FromMilliseconds(INT64_C(1365181456275));
sct->extensions.clear();
sct->signature.hash_algorithm = ct::DigitallySigned::HASH_ALGO_SHA256;
« no previous file with comments | « net/ssl/ssl_info.h ('k') | net/test/embedded_test_server/embedded_test_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698