| 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[] = {
|
|
|