Chromium Code Reviews| Index: net/cert/cert_verify_proc_openssl_ios.h |
| diff --git a/net/cert/cert_verify_proc_mac.h b/net/cert/cert_verify_proc_openssl_ios.h |
| similarity index 63% |
| copy from net/cert/cert_verify_proc_mac.h |
| copy to net/cert/cert_verify_proc_openssl_ios.h |
| index 3c87edd7a48f5678dbff643e4be602fa971034d4..f0d7632cf74ce3dc8644b7e0e17af03aa7fe65ee 100644 |
| --- a/net/cert/cert_verify_proc_mac.h |
| +++ b/net/cert/cert_verify_proc_openssl_ios.h |
| @@ -1,25 +1,25 @@ |
| -// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +// Copyright (c) 2016 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#ifndef NET_CERT_CERT_VERIFY_PROC_MAC_H_ |
| -#define NET_CERT_CERT_VERIFY_PROC_MAC_H_ |
| +#ifndef NET_CERT_CERT_VERIFY_PROC_OPENSSL_IOS_H_ |
| +#define NET_CERT_CERT_VERIFY_PROC_OPENSSL_IOS_H_ |
| #include "net/cert/cert_verify_proc.h" |
| namespace net { |
| -// Performs certificate path construction and validation using OS X's |
| +// Performs certificate path construction and validation using IOS's |
|
davidben
2016/03/21 19:46:47
iOS
svaldez
2016/03/21 20:23:52
Done.
|
| // Security.framework. |
| -class CertVerifyProcMac : public CertVerifyProc { |
| +class CertVerifyProcOpenSSLIOS : public CertVerifyProc { |
| public: |
| - CertVerifyProcMac(); |
| + CertVerifyProcOpenSSLIOS(); |
| bool SupportsAdditionalTrustAnchors() const override; |
| bool SupportsOCSPStapling() const override; |
| protected: |
| - ~CertVerifyProcMac() override; |
| + ~CertVerifyProcOpenSSLIOS() override; |
| private: |
| int VerifyInternal(X509Certificate* cert, |
| @@ -33,4 +33,4 @@ class CertVerifyProcMac : public CertVerifyProc { |
| } // namespace net |
| -#endif // NET_CERT_CERT_VERIFY_PROC_MAC_H_ |
| +#endif // NET_CERT_CERT_VERIFY_PROC_OPENSSL_IOS_H_ |