| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "net/quic/test_tools/crypto_test_utils.h" | 5 #include "net/quic/test_tools/crypto_test_utils.h" |
| 6 | 6 |
| 7 #include "base/memory/ref_counted.h" | 7 #include "base/memory/ref_counted.h" |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "net/base/test_data_directory.h" | 9 #include "net/base/test_data_directory.h" |
| 10 #include "net/cert/cert_verifier.h" | 10 #include "net/cert/cert_verifier.h" |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 return new FakeProofSource(); | 130 return new FakeProofSource(); |
| 131 } | 131 } |
| 132 | 132 |
| 133 // static | 133 // static |
| 134 ProofVerifier* CryptoTestUtils::FakeProofVerifierForTesting() { | 134 ProofVerifier* CryptoTestUtils::FakeProofVerifierForTesting() { |
| 135 return new FakeProofVerifier(); | 135 return new FakeProofVerifier(); |
| 136 } | 136 } |
| 137 | 137 |
| 138 // static | 138 // static |
| 139 ProofVerifyContext* CryptoTestUtils::FakeProofVerifyContextForTesting() { | 139 ProofVerifyContext* CryptoTestUtils::FakeProofVerifyContextForTesting() { |
| 140 return NULL; | 140 return nullptr; |
| 141 } | 141 } |
| 142 | 142 |
| 143 } // namespace test | 143 } // namespace test |
| 144 | 144 |
| 145 } // namespace net | 145 } // namespace net |
| OLD | NEW |