| 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 | 9 |
| 10 #include "net/base/net_export.h" |
| 10 #include "net/cert/cert_verifier.h" | 11 #include "net/cert/cert_verifier.h" |
| 11 #include "net/cert/cert_verify_result.h" | 12 #include "net/cert/cert_verify_result.h" |
| 12 | 13 |
| 13 namespace net { | 14 namespace net { |
| 14 | 15 |
| 15 class MockCertVerifier : public CertVerifier { | 16 class NET_EXPORT_PRIVATE MockCertVerifier : public CertVerifier { |
| 16 public: | 17 public: |
| 17 // Creates a new MockCertVerifier. By default, any call to Verify() will | 18 // Creates a new MockCertVerifier. By default, any call to Verify() will |
| 18 // result in the cert status being flagged as CERT_STATUS_INVALID and return | 19 // result in the cert status being flagged as CERT_STATUS_INVALID and return |
| 19 // an ERR_CERT_INVALID network error code. This behaviour can be overridden | 20 // an ERR_CERT_INVALID network error code. This behaviour can be overridden |
| 20 // by calling set_default_result() to change the default return value for | 21 // by calling set_default_result() to change the default return value for |
| 21 // Verify() or by calling one of the AddResult*() methods to specifically | 22 // Verify() or by calling one of the AddResult*() methods to specifically |
| 22 // handle a certificate or certificate and host. | 23 // handle a certificate or certificate and host. |
| 23 MockCertVerifier(); | 24 MockCertVerifier(); |
| 24 | 25 |
| 25 ~MockCertVerifier() override; | 26 ~MockCertVerifier() override; |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 struct Rule; | 61 struct Rule; |
| 61 typedef std::list<Rule> RuleList; | 62 typedef std::list<Rule> RuleList; |
| 62 | 63 |
| 63 int default_result_; | 64 int default_result_; |
| 64 RuleList rules_; | 65 RuleList rules_; |
| 65 }; | 66 }; |
| 66 | 67 |
| 67 } // namespace net | 68 } // namespace net |
| 68 | 69 |
| 69 #endif // NET_CERT_MOCK_CERT_VERIFIER_H_ | 70 #endif // NET_CERT_MOCK_CERT_VERIFIER_H_ |
| OLD | NEW |