Chromium Code Reviews| Index: net/third_party/nss/ssl/ssl.h |
| diff --git a/net/third_party/nss/ssl/ssl.h b/net/third_party/nss/ssl/ssl.h |
| index 719425704c225bef1ffd582be589d92065396222..b9b1e124128e49dab3a4258c3c9461d82089cfda 100644 |
| --- a/net/third_party/nss/ssl/ssl.h |
| +++ b/net/third_party/nss/ssl/ssl.h |
| @@ -239,7 +239,6 @@ SSL_IMPORT SECStatus SSL_GetNextProto(PRFileDesc *fd, |
| ** is enabled, otherwise it is disabled. |
| ** The "cipher" values are defined in sslproto.h (the SSL_EN_* values). |
| ** EnableCipher records user preferences. |
| -** SetPolicy sets the policy according to the policy module. |
| */ |
| #ifdef SSL_DEPRECATED_FUNCTION |
| /* Old deprecated function names */ |
| @@ -252,6 +251,9 @@ SSL_IMPORT SECStatus SSL_CipherPrefSet(PRFileDesc *fd, PRInt32 cipher, PRBool en |
| SSL_IMPORT SECStatus SSL_CipherPrefGet(PRFileDesc *fd, PRInt32 cipher, PRBool *enabled); |
| SSL_IMPORT SECStatus SSL_CipherPrefSetDefault(PRInt32 cipher, PRBool enabled); |
| SSL_IMPORT SECStatus SSL_CipherPrefGetDefault(PRInt32 cipher, PRBool *enabled); |
| + |
| +/* Policy functions are deprecated and no longer have any effect. They exist in |
| + * order to maintain ABI compatibility. */ |
|
wtc
2013/08/08 21:26:28
It would be nice to document that SSL_CipherPolicy
agl
2013/08/09 15:53:49
Done.
|
| SSL_IMPORT SECStatus SSL_CipherPolicySet(PRInt32 cipher, PRInt32 policy); |
| SSL_IMPORT SECStatus SSL_CipherPolicyGet(PRInt32 cipher, PRInt32 *policy); |