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

Unified Diff: net/test/ct_test_util.cc

Issue 1160203003: net: Remove the remaining use of GG_(U)INTn_C macros. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stdint.h Created 5 years, 7 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/quic/quic_utils.cc ('k') | net/websockets/websocket_basic_stream_test.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..e6b0099e6ce372dc1fa5644be8f22e6f2e813cd6 100644
--- a/net/test/ct_test_util.cc
+++ b/net/test/ct_test_util.cc
@@ -4,6 +4,7 @@
#include "net/test/ct_test_util.h"
+#include <stdint.h>
#include <string>
#include <vector>
@@ -204,7 +205,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 +222,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/quic/quic_utils.cc ('k') | net/websockets/websocket_basic_stream_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698