Index: net/base/x509_cert_types_mac.cc |
=================================================================== |
--- net/base/x509_cert_types_mac.cc (revision 97489) |
+++ net/base/x509_cert_types_mac.cc (working copy) |
@@ -36,11 +36,7 @@ |
// BER DistinguishedName structure. |
struct KeyValuePair { |
- CSSM_OID key; |
- int value_type; |
- CSSM_DATA value; |
- |
- enum { |
+ enum ValueTypes { |
kTypeOther = 0, |
kTypePrintableString, |
kTypeIA5String, |
@@ -49,6 +45,10 @@ |
kTypeBMPString, |
kTypeUniversalString, |
}; |
+ |
+ CSSM_OID key; |
+ ValueTypes value_type; |
Nico
2011/08/19 20:34:23
Is this IPCd? If so, can the IPC macros handle enu
Peter Kasting
2011/08/19 20:52:21
This is declared inside a .cc file, so it's local
|
+ CSSM_DATA value; |
}; |
const SecAsn1Template kStringValueTemplate[] = { |