Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1339)

Unified Diff: ppapi/api/private/ppb_x509_certificate_private.idl

Issue 10006048: Fixed some PP_X509Certificate_Private_Field enum values. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ppapi/c/private/ppb_x509_certificate_private.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/api/private/ppb_x509_certificate_private.idl
diff --git a/ppapi/api/private/ppb_x509_certificate_private.idl b/ppapi/api/private/ppb_x509_certificate_private.idl
index c68400be16e5eef48040009306134f0ad6ad1f1a..c58403e4d7446cf179f24914e1396a57e62cc67f 100644
--- a/ppapi/api/private/ppb_x509_certificate_private.idl
+++ b/ppapi/api/private/ppb_x509_certificate_private.idl
@@ -83,13 +83,13 @@ enum PP_X509Certificate_Private_Field {
* Note: This field is unimplemented and will return
* <code>PP_VARTYPE_NULL</code>.
*/
- PP_X509CERTIFICATE_PRIVATE_ALGORITHM_OID = 16,
+ PP_X509CERTIFICATE_PRIVATE_SIGNATURE_ALGORITHM_OID = 16,
/**
* Note: This field is unimplemented and will return
* <code>PP_VARTYPE_NULL</code>.
*/
- PP_X509CERTIFICATE_PRIVATE_ALGORITHM_PARAMATERS_RAW = 17,
+ PP_X509CERTIFICATE_PRIVATE_SIGNATURE_ALGORITHM_PARAMATERS_RAW = 17,
/**
* This corresponds to a double (<code>PP_VARTYPE_DOUBLE</code>) which
@@ -116,7 +116,13 @@ enum PP_X509Certificate_Private_Field {
* This corresponds to a byte array (<code>PP_VARTYPE_ARRAY_BUFFER</code>).
* This is the DER-encoded representation of the certificate.
*/
- PP_X509CERTIFICATE_PRIVATE_RAW = 22
+ PP_X509CERTIFICATE_PRIVATE_RAW = 22,
+
+ /** This corresponds to a string (<code>PP_VARTYPE_STRING</code>). */
+ PP_X509CERTIFICATE_PRIVATE_ISSUER_DISTINGUISHED_NAME = 23,
+
+ /** This corresponds to a string (<code>PP_VARTYPE_STRING</code>). */
+ PP_X509CERTIFICATE_PRIVATE_SUBJECT_DISTINGUISHED_NAME = 24
};
/**
« no previous file with comments | « no previous file | ppapi/c/private/ppb_x509_certificate_private.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698