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 64% |
| copy from net/cert/cert_verify_proc_mac.h |
| copy to net/cert/cert_verify_proc_openssl_ios.h |
| index 3c87edd7a48f5678dbff643e4be602fa971034d4..e7d6e7e2b2f6c87b48bcdc21f6128b918989def6 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_ |
|
Ryan Sleevi
2016/03/21 20:49:56
This file name should match the class name - which
svaldez
2016/03/21 21:36:26
Done.
|
| #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 |
| // Security.framework. |
| -class CertVerifyProcMac : public CertVerifyProc { |
| +class CertVerifyProcIOS : public CertVerifyProc { |
| public: |
| - CertVerifyProcMac(); |
| + CertVerifyProcIOS(); |
| bool SupportsAdditionalTrustAnchors() const override; |
| bool SupportsOCSPStapling() const override; |
| protected: |
| - ~CertVerifyProcMac() override; |
| + ~CertVerifyProcIOS() 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_ |