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

Unified Diff: net/cert/crl_set.cc

Issue 1158923005: Use the exact-width integer types defined in <stdint.h> rather than (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tweak comments. Exclude mime_sniffer*. Rebase. 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
Index: net/cert/crl_set.cc
diff --git a/net/cert/crl_set.cc b/net/cert/crl_set.cc
index 2d4f5c3331ceada7d2b4d892a689ed22049e2ec8..bc2cecb2c77784cf1a0423a5b650a765b5c49b07 100644
--- a/net/cert/crl_set.cc
+++ b/net/cert/crl_set.cc
@@ -63,11 +63,11 @@ bool CRLSet::IsExpired() const {
if (not_after_ == 0)
return false;
- uint64 now = base::Time::Now().ToTimeT();
+ uint64_t now = base::Time::Now().ToTimeT();
return now > not_after_;
}
-uint32 CRLSet::sequence() const {
+uint32_t CRLSet::sequence() const {
return sequence_;
}
« no previous file with comments | « net/cert/crl_set.h ('k') | net/cert/crl_set_storage.cc » ('j') | net/cert/crl_set_storage.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698