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

Side by Side Diff: net/quic/chromium/crypto_test_utils_chromium.cc

Issue 2351513002: net: rename BoundNetLog to NetLogWithSource (Closed)
Patch Set: one more fix, content bound_net_log_ Created 4 years, 2 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
OLDNEW
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 <memory> 5 #include <memory>
6 #include <utility> 6 #include <utility>
7 7
8 #include "base/callback_helpers.h" 8 #include "base/callback_helpers.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 return ProofVerifierForTestingInternal(/*use_real_proof_verifier=*/false); 123 return ProofVerifierForTestingInternal(/*use_real_proof_verifier=*/false);
124 } 124 }
125 125
126 // static 126 // static
127 std::unique_ptr<ProofVerifier> CryptoTestUtils::RealProofVerifierForTesting() { 127 std::unique_ptr<ProofVerifier> CryptoTestUtils::RealProofVerifierForTesting() {
128 return ProofVerifierForTestingInternal(/*use_real_proof_verifier=*/true); 128 return ProofVerifierForTestingInternal(/*use_real_proof_verifier=*/true);
129 } 129 }
130 130
131 // static 131 // static
132 ProofVerifyContext* CryptoTestUtils::ProofVerifyContextForTesting() { 132 ProofVerifyContext* CryptoTestUtils::ProofVerifyContextForTesting() {
133 return new ProofVerifyContextChromium(/*cert_verify_flags=*/0, BoundNetLog()); 133 return new ProofVerifyContextChromium(/*cert_verify_flags=*/0,
134 NetLogWithSource());
134 } 135 }
135 136
136 } // namespace test 137 } // namespace test
137 138
138 } // namespace net 139 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698