| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NET_BASE_MULTI_THREADED_CERT_VERIFIER_H_ | 5 #ifndef NET_CERT_MULTI_THREADED_CERT_VERIFIER_H_ |
| 6 #define NET_BASE_MULTI_THREADED_CERT_VERIFIER_H_ | 6 #define NET_CERT_MULTI_THREADED_CERT_VERIFIER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
| 14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 15 #include "base/threading/non_thread_safe.h" | 15 #include "base/threading/non_thread_safe.h" |
| 16 #include "net/base/cert_database.h" | |
| 17 #include "net/base/cert_verifier.h" | |
| 18 #include "net/base/cert_verify_result.h" | |
| 19 #include "net/base/completion_callback.h" | 16 #include "net/base/completion_callback.h" |
| 20 #include "net/base/expiring_cache.h" | 17 #include "net/base/expiring_cache.h" |
| 21 #include "net/base/hash_value.h" | 18 #include "net/base/hash_value.h" |
| 22 #include "net/base/net_export.h" | 19 #include "net/base/net_export.h" |
| 23 #include "net/base/x509_cert_types.h" | 20 #include "net/cert/cert_database.h" |
| 21 #include "net/cert/cert_verifier.h" |
| 22 #include "net/cert/cert_verify_result.h" |
| 23 #include "net/cert/x509_cert_types.h" |
| 24 | 24 |
| 25 namespace net { | 25 namespace net { |
| 26 | 26 |
| 27 class CertTrustAnchorProvider; | 27 class CertTrustAnchorProvider; |
| 28 class CertVerifierJob; | 28 class CertVerifierJob; |
| 29 class CertVerifierRequest; | 29 class CertVerifierRequest; |
| 30 class CertVerifierWorker; | 30 class CertVerifierWorker; |
| 31 class CertVerifyProc; | 31 class CertVerifyProc; |
| 32 | 32 |
| 33 // MultiThreadedCertVerifier is a CertVerifier implementation that runs | 33 // MultiThreadedCertVerifier is a CertVerifier implementation that runs |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 | 159 |
| 160 scoped_refptr<CertVerifyProc> verify_proc_; | 160 scoped_refptr<CertVerifyProc> verify_proc_; |
| 161 | 161 |
| 162 CertTrustAnchorProvider* trust_anchor_provider_; | 162 CertTrustAnchorProvider* trust_anchor_provider_; |
| 163 | 163 |
| 164 DISALLOW_COPY_AND_ASSIGN(MultiThreadedCertVerifier); | 164 DISALLOW_COPY_AND_ASSIGN(MultiThreadedCertVerifier); |
| 165 }; | 165 }; |
| 166 | 166 |
| 167 } // namespace net | 167 } // namespace net |
| 168 | 168 |
| 169 #endif // NET_BASE_MULTI_THREADED_CERT_VERIFIER_H_ | 169 #endif // NET_CERT_MULTI_THREADED_CERT_VERIFIER_H_ |
| OLD | NEW |