Index: chrome/common/extensions/api/platform_keys.idl |
diff --git a/chrome/common/extensions/api/platform_keys.idl b/chrome/common/extensions/api/platform_keys.idl |
index 9c97ee52eb2caf3f69e3b53f4f03f7e3b2c20939..05460dec144cdc44fa1126b0c9e7f8049e15cdcd 100644 |
--- a/chrome/common/extensions/api/platform_keys.idl |
+++ b/chrome/common/extensions/api/platform_keys.idl |
@@ -23,7 +23,6 @@ namespace platformKeys { |
enum ClientCertificateType { |
rsaSign, |
- dssSign, |
ecdsaSign |
}; |
@@ -31,7 +30,9 @@ namespace platformKeys { |
// See http://tools.ietf.org/html/rfc4346#section-7.4.4 . |
dictionary ClientCertificateRequest { |
// This field is a list of the types of certificates requested, sorted in |
- // order of the server's preference. |
+ // order of the server's preference. Only certificates of a type contained |
+ // in this list will be retrieved. If <code>certificateTypes</code> is the |
+ // empty list, however, all available certificates will be returned. |
pneubeck (no reviews)
2015/05/19 10:09:00
s/all available certificate/certificates of any ty
cschuet (SLOW)
2015/05/19 11:36:23
Done.
|
ClientCertificateType[] certificateTypes; |
// List of distinguished names of certificate authorities allowed by the |