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

Unified Diff: net/cert/crl_set.h

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.h
diff --git a/net/cert/crl_set.h b/net/cert/crl_set.h
index 688e47cc737613e31dad3a482359a32b362b5f97..f54e346b460adccc61490a46369fe5d9df565659 100644
--- a/net/cert/crl_set.h
+++ b/net/cert/crl_set.h
@@ -49,7 +49,7 @@ class NET_EXPORT CRLSet : public base::RefCountedThreadSafe<CRLSet> {
// sequence returns the sequence number of this CRL set. CRL sets generated
// by the same source are given strictly monotonically increasing sequence
// numbers.
- uint32 sequence() const;
+ uint32_t sequence() const;
// CRLList contains a list of (issuer SPKI hash, revoked serial numbers)
// pairs.
@@ -82,11 +82,11 @@ class NET_EXPORT CRLSet : public base::RefCountedThreadSafe<CRLSet> {
friend class base::RefCountedThreadSafe<CRLSet>;
friend class CRLSetStorage;
- uint32 sequence_;
+ uint32_t sequence_;
CRLList crls_;
// not_after_ contains the time, in UNIX epoch seconds, after which the
// CRLSet should be considered stale, or 0 if no such time was given.
- uint64 not_after_;
+ uint64_t not_after_;
// crls_index_by_issuer_ maps from issuer SPKI hashes to the index in |crls_|
// where the information for that issuer can be found. We have both |crls_|
// and |crls_index_by_issuer_| because, when applying a delta update, we need

Powered by Google App Engine
This is Rietveld 408576698