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

Unified Diff: ios/chrome/browser/net/crl_set_fetcher.h

Issue 1544743002: Switch to standard integer types in ios/. (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 | « ios/chrome/browser/net/cookie_util.mm ('k') | ios/chrome/browser/net/crl_set_fetcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/net/crl_set_fetcher.h
diff --git a/ios/chrome/browser/net/crl_set_fetcher.h b/ios/chrome/browser/net/crl_set_fetcher.h
index 959572a4e50cfc48dc91124876a7c579479872a8..5f0574246732d7b9964615933a76f3b5b18241cb 100644
--- a/ios/chrome/browser/net/crl_set_fetcher.h
+++ b/ios/chrome/browser/net/crl_set_fetcher.h
@@ -5,6 +5,8 @@
#ifndef IOS_CHROME_BROWSER_NET_CRL_SET_FETCHER_H_
#define IOS_CHROME_BROWSER_NET_CRL_SET_FETCHER_H_
+#include <stdint.h>
+
#include <string>
#include "base/compiler_specific.h"
@@ -71,7 +73,7 @@ class CRLSetFetcher : public update_client::CrxInstaller {
void SetCRLSetIfNewer(scoped_refptr<net::CRLSet> crl_set);
// RegisterComponent registers this object as a component updater.
- void RegisterComponent(uint32 sequence_of_loaded_crl);
+ void RegisterComponent(uint32_t sequence_of_loaded_crl);
// DoDeleteFromDisk runs on the FILE thread and removes the CRLSet file from
// the disk.
« no previous file with comments | « ios/chrome/browser/net/cookie_util.mm ('k') | ios/chrome/browser/net/crl_set_fetcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698