| 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_MOCK_CERT_VERIFIER_H_ | 5 #ifndef NET_CERT_MOCK_CERT_VERIFIER_H_ |
| 6 #define NET_CERT_MOCK_CERT_VERIFIER_H_ | 6 #define NET_CERT_MOCK_CERT_VERIFIER_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 MockCertVerifier(); | 24 MockCertVerifier(); |
| 25 | 25 |
| 26 ~MockCertVerifier() override; | 26 ~MockCertVerifier() override; |
| 27 | 27 |
| 28 // CertVerifier implementation | 28 // CertVerifier implementation |
| 29 int Verify(const RequestParams& params, | 29 int Verify(const RequestParams& params, |
| 30 CRLSet* crl_set, | 30 CRLSet* crl_set, |
| 31 CertVerifyResult* verify_result, | 31 CertVerifyResult* verify_result, |
| 32 const CompletionCallback& callback, | 32 const CompletionCallback& callback, |
| 33 std::unique_ptr<Request>* out_req, | 33 std::unique_ptr<Request>* out_req, |
| 34 const BoundNetLog& net_log) override; | 34 const NetLogWithSource& net_log) override; |
| 35 | 35 |
| 36 // Sets the default return value for Verify() for certificates/hosts that do | 36 // Sets the default return value for Verify() for certificates/hosts that do |
| 37 // not have explicit results added via the AddResult*() methods. | 37 // not have explicit results added via the AddResult*() methods. |
| 38 void set_default_result(int default_result) { | 38 void set_default_result(int default_result) { |
| 39 default_result_ = default_result; | 39 default_result_ = default_result; |
| 40 } | 40 } |
| 41 | 41 |
| 42 // Adds a rule that will cause any call to Verify() for |cert| to return rv, | 42 // Adds a rule that will cause any call to Verify() for |cert| to return rv, |
| 43 // copying |verify_result| into the verified result. | 43 // copying |verify_result| into the verified result. |
| 44 // Note: Only the primary certificate of |cert| is checked. Any intermediate | 44 // Note: Only the primary certificate of |cert| is checked. Any intermediate |
| (...skipping 13 matching lines...) Expand all Loading... |
| 58 struct Rule; | 58 struct Rule; |
| 59 typedef std::list<Rule> RuleList; | 59 typedef std::list<Rule> RuleList; |
| 60 | 60 |
| 61 int default_result_; | 61 int default_result_; |
| 62 RuleList rules_; | 62 RuleList rules_; |
| 63 }; | 63 }; |
| 64 | 64 |
| 65 } // namespace net | 65 } // namespace net |
| 66 | 66 |
| 67 #endif // NET_CERT_MOCK_CERT_VERIFIER_H_ | 67 #endif // NET_CERT_MOCK_CERT_VERIFIER_H_ |
| OLD | NEW |