| 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;
|
|
|