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

Unified Diff: chrome/browser/net/crl_set_fetcher.cc

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | « chrome/browser/net/crl_set_fetcher.h ('k') | chrome/browser/net/disk_cache_dir_policy_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/crl_set_fetcher.cc
diff --git a/chrome/browser/net/crl_set_fetcher.cc b/chrome/browser/net/crl_set_fetcher.cc
index 5c402cd1cb995bd9fe7dfb2dd4e76c8487e64292..f2d9caf4bd3e970ad02f0b39163264dabde8c133 100644
--- a/chrome/browser/net/crl_set_fetcher.cc
+++ b/chrome/browser/net/crl_set_fetcher.cc
@@ -67,7 +67,7 @@ void CRLSetFetcher::DoInitialLoadFromDisk() {
LoadFromDisk(GetCRLSetFilePath(), &crl_set_);
- uint32 sequence_of_loaded_crl = 0;
+ uint32_t sequence_of_loaded_crl = 0;
if (crl_set_.get())
sequence_of_loaded_crl = crl_set_->sequence();
@@ -129,14 +129,13 @@ void CRLSetFetcher::SetCRLSetIfNewer(
// kPublicKeySHA256 is the SHA256 hash of the SubjectPublicKeyInfo of the key
// that's used to sign generated CRL sets.
-static const uint8 kPublicKeySHA256[32] = {
- 0x75, 0xda, 0xf8, 0xcb, 0x77, 0x68, 0x40, 0x33,
- 0x65, 0x4c, 0x97, 0xe5, 0xc5, 0x1b, 0xcd, 0x81,
- 0x7b, 0x1e, 0xeb, 0x11, 0x2c, 0xe1, 0xa4, 0x33,
- 0x8c, 0xf5, 0x72, 0x5e, 0xed, 0xb8, 0x43, 0x97,
+static const uint8_t kPublicKeySHA256[32] = {
+ 0x75, 0xda, 0xf8, 0xcb, 0x77, 0x68, 0x40, 0x33, 0x65, 0x4c, 0x97,
+ 0xe5, 0xc5, 0x1b, 0xcd, 0x81, 0x7b, 0x1e, 0xeb, 0x11, 0x2c, 0xe1,
+ 0xa4, 0x33, 0x8c, 0xf5, 0x72, 0x5e, 0xed, 0xb8, 0x43, 0x97,
};
-void CRLSetFetcher::RegisterComponent(uint32 sequence_of_loaded_crl) {
+void CRLSetFetcher::RegisterComponent(uint32_t sequence_of_loaded_crl) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
update_client::CrxComponent component;
« no previous file with comments | « chrome/browser/net/crl_set_fetcher.h ('k') | chrome/browser/net/disk_cache_dir_policy_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698