| 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_CERT_MULTI_THREADED_CERT_VERIFIER_H_ | 5 #ifndef NET_CERT_MULTI_THREADED_CERT_VERIFIER_H_ |
| 6 #define NET_CERT_MULTI_THREADED_CERT_VERIFIER_H_ | 6 #define NET_CERT_MULTI_THREADED_CERT_VERIFIER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 8 #include <stdint.h> | 9 #include <stdint.h> |
| 10 |
| 9 #include <set> | 11 #include <set> |
| 10 #include <string> | 12 #include <string> |
| 11 #include <vector> | 13 #include <vector> |
| 12 | 14 |
| 13 #include "base/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
| 14 #include "base/macros.h" | 16 #include "base/macros.h" |
| 15 #include "base/memory/ref_counted.h" | 17 #include "base/memory/ref_counted.h" |
| 16 #include "base/threading/non_thread_safe.h" | 18 #include "base/threading/non_thread_safe.h" |
| 17 #include "net/base/completion_callback.h" | 19 #include "net/base/completion_callback.h" |
| 18 #include "net/base/expiring_cache.h" | 20 #include "net/base/expiring_cache.h" |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 scoped_refptr<CertVerifyProc> verify_proc_; | 180 scoped_refptr<CertVerifyProc> verify_proc_; |
| 179 | 181 |
| 180 CertTrustAnchorProvider* trust_anchor_provider_; | 182 CertTrustAnchorProvider* trust_anchor_provider_; |
| 181 | 183 |
| 182 DISALLOW_COPY_AND_ASSIGN(MultiThreadedCertVerifier); | 184 DISALLOW_COPY_AND_ASSIGN(MultiThreadedCertVerifier); |
| 183 }; | 185 }; |
| 184 | 186 |
| 185 } // namespace net | 187 } // namespace net |
| 186 | 188 |
| 187 #endif // NET_CERT_MULTI_THREADED_CERT_VERIFIER_H_ | 189 #endif // NET_CERT_MULTI_THREADED_CERT_VERIFIER_H_ |
| OLD | NEW |