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

Side by Side Diff: net/cert/multi_threaded_cert_verifier.h

Issue 13006020: net: extract net/cert out of net/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/cert/mock_cert_verifier.cc ('k') | net/cert/multi_threaded_cert_verifier.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « net/cert/mock_cert_verifier.cc ('k') | net/cert/multi_threaded_cert_verifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698