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

Unified Diff: net/cert/x509_cert_types_mac.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/x509_cert_types_mac.cc
diff --git a/net/cert/x509_cert_types_mac.cc b/net/cert/x509_cert_types_mac.cc
index d5b2ea35ff246cfe837d6042fa32a849a04fadc7..c8ed4fe00f5a508a627abf856a2b7045c79fa8ed 100644
--- a/net/cert/x509_cert_types_mac.cc
+++ b/net/cert/x509_cert_types_mac.cc
@@ -29,13 +29,13 @@ namespace {
// as long as the symbols are properly exposed. The fact that Apple's
// implementation stores it in BER is an internal implementation detail
// observed by studying libsecurity_cssm.
-const uint8 kDomainComponentData[] = {
+const uint8_t kDomainComponentData[] = {
0x09, 0x92, 0x26, 0x89, 0x93, 0xF2, 0x2C, 0x64, 0x01, 0x19
};
const CSSM_OID kDomainComponentOID = {
arraysize(kDomainComponentData),
- const_cast<uint8*>(kDomainComponentData)
+ const_cast<uint8_t*>(kDomainComponentData)
};
const CSSM_OID* kOIDs[] = {

Powered by Google App Engine
This is Rietveld 408576698