| Index: net/cert/x509_util.h
|
| diff --git a/net/cert/x509_util.h b/net/cert/x509_util.h
|
| index e6b0e448cd42184d70913bc65d667b0e9a2cd8dd..58150caccf91fc2922d652264e46147167f3f1e7 100644
|
| --- a/net/cert/x509_util.h
|
| +++ b/net/cert/x509_util.h
|
| @@ -24,10 +24,7 @@ class X509Certificate;
|
| namespace x509_util {
|
|
|
| // Supported digest algorithms for signing certificates.
|
| -enum DigestAlgorithm {
|
| - DIGEST_SHA1,
|
| - DIGEST_SHA256
|
| -};
|
| +enum DigestAlgorithm { DIGEST_SHA1, DIGEST_SHA256 };
|
|
|
| // Returns true if the times can be used to create an X.509 certificate.
|
| // Certificates can accept dates from Jan 1st, 1 to Dec 31, 9999. A bug in NSS
|
| @@ -111,16 +108,15 @@ class NET_EXPORT_PRIVATE ClientCertSorter {
|
| public:
|
| ClientCertSorter();
|
|
|
| - bool operator()(
|
| - const scoped_refptr<X509Certificate>& a,
|
| - const scoped_refptr<X509Certificate>& b) const;
|
| + bool operator()(const scoped_refptr<X509Certificate>& a,
|
| + const scoped_refptr<X509Certificate>& b) const;
|
|
|
| private:
|
| base::Time now_;
|
| };
|
|
|
| -} // namespace x509_util
|
| +} // namespace x509_util
|
|
|
| -} // namespace net
|
| +} // namespace net
|
|
|
| #endif // NET_CERT_X509_UTIL_H_
|
|
|