| Index: net/base/x509_cert_types.h
|
| diff --git a/net/base/x509_cert_types.h b/net/base/x509_cert_types.h
|
| index b7540c404a8ebc15f0a24da72f0594b0cbf4ce37..43d05dd86ad5475a0d19f6e4a61b70013a9a5e95 100644
|
| --- a/net/base/x509_cert_types.h
|
| +++ b/net/base/x509_cert_types.h
|
| @@ -53,8 +53,9 @@ class SHA1FingerprintLessThan
|
|
|
| // CertPrincipal represents the issuer or subject field of an X.509 certificate.
|
| struct CertPrincipal {
|
| - CertPrincipal() { }
|
| - explicit CertPrincipal(const std::string& name) : common_name(name) { }
|
| + CertPrincipal();
|
| + explicit CertPrincipal(const std::string& name);
|
| + ~CertPrincipal();
|
|
|
| // Parses a BER-format DistinguishedName.
|
| bool ParseDistinguishedName(const void* ber_name_data, size_t length);
|
| @@ -105,6 +106,9 @@ class CertPolicy {
|
| DENIED,
|
| };
|
|
|
| + CertPolicy();
|
| + ~CertPolicy();
|
| +
|
| // Returns the judgment this policy makes about this certificate.
|
| Judgment Check(X509Certificate* cert) const;
|
|
|
|
|