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

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

Issue 2366893002: net: address review comments for NetLogWithSource renaming (Closed)
Patch Set: Created 4 years, 3 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
« no previous file with comments | « extensions/browser/extension_throttle_manager.h ('k') | net/cert/ct_verifier.h » ('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_CERT_CERT_VERIFIER_H_ 5 #ifndef NET_CERT_CERT_VERIFIER_H_
6 #define NET_CERT_CERT_VERIFIER_H_ 6 #define NET_CERT_CERT_VERIFIER_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "base/memory/ref_counted.h" 13 #include "base/memory/ref_counted.h"
14 #include "net/base/completion_callback.h" 14 #include "net/base/completion_callback.h"
15 #include "net/base/hash_value.h" 15 #include "net/base/hash_value.h"
16 #include "net/base/net_export.h" 16 #include "net/base/net_export.h"
17 #include "net/cert/x509_certificate.h" 17 #include "net/cert/x509_certificate.h"
18 18
19 namespace net { 19 namespace net {
20 20
21 class NetLogWithSource;
22 class CertVerifyResult; 21 class CertVerifyResult;
23 class CRLSet; 22 class CRLSet;
23 class NetLogWithSource;
24 24
25 // CertVerifier represents a service for verifying certificates. 25 // CertVerifier represents a service for verifying certificates.
26 // 26 //
27 // CertVerifiers can handle multiple requests at a time. 27 // CertVerifiers can handle multiple requests at a time.
28 class NET_EXPORT CertVerifier { 28 class NET_EXPORT CertVerifier {
29 public: 29 public:
30 class Request { 30 class Request {
31 public: 31 public:
32 Request() {} 32 Request() {}
33 33
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 virtual bool SupportsOCSPStapling(); 173 virtual bool SupportsOCSPStapling();
174 174
175 // Creates a CertVerifier implementation that verifies certificates using 175 // Creates a CertVerifier implementation that verifies certificates using
176 // the preferred underlying cryptographic libraries. 176 // the preferred underlying cryptographic libraries.
177 static std::unique_ptr<CertVerifier> CreateDefault(); 177 static std::unique_ptr<CertVerifier> CreateDefault();
178 }; 178 };
179 179
180 } // namespace net 180 } // namespace net
181 181
182 #endif // NET_CERT_CERT_VERIFIER_H_ 182 #endif // NET_CERT_CERT_VERIFIER_H_
OLDNEW
« no previous file with comments | « extensions/browser/extension_throttle_manager.h ('k') | net/cert/ct_verifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698