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

Unified Diff: net/cert/x509_certificate.h

Issue 2864133002: Convert iOS to use X509CertificateBytes. (Closed)
Patch Set: . Created 3 years, 7 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
Index: net/cert/x509_certificate.h
diff --git a/net/cert/x509_certificate.h b/net/cert/x509_certificate.h
index 0cb93b5adb71a3344a05689fa298dba48255bc83..4fb0b3e4804c273d71b2479f94321c03bccfa440 100644
--- a/net/cert/x509_certificate.h
+++ b/net/cert/x509_certificate.h
@@ -231,15 +231,6 @@ class NET_EXPORT X509Certificate
return intermediate_ca_certs_;
}
-#if defined(OS_IOS)
- // Returns a new CFMutableArrayRef containing this certificate and its
- // intermediate certificates in the form expected by Security.framework
- // and Keychain Services, or NULL on failure.
- // The first item in the array will be this certificate, followed by its
- // intermediates, if any.
- CFMutableArrayRef CreateOSCertChainForCert() const;
-#endif
-
// Do any of the given issuer names appear in this cert's chain of trust?
// |valid_issuers| is a list of DER-encoded X.509 DistinguishedNames.
bool IsIssuedByEncoded(const std::vector<std::string>& valid_issuers);

Powered by Google App Engine
This is Rietveld 408576698