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

Side by Side Diff: net/quic/test_tools/failing_proof_source.h

Issue 2679783003: Deprecate FLAGS_quic_reloadable_flag_enable_async_get_proof (Closed)
Patch Set: Address gredner's comments. Created 3 years, 10 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 | « net/quic/test_tools/crypto_test_utils.cc ('k') | net/quic/test_tools/failing_proof_source.cc » ('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) 2017 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2017 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_QUIC_TEST_TOOLS_FAILING_PROOF_SOURCE_H_ 5 #ifndef NET_QUIC_TEST_TOOLS_FAILING_PROOF_SOURCE_H_
6 #define NET_QUIC_TEST_TOOLS_FAILING_PROOF_SOURCE_H_ 6 #define NET_QUIC_TEST_TOOLS_FAILING_PROOF_SOURCE_H_
7 7
8 #include "net/quic/core/crypto/proof_source.h" 8 #include "net/quic/core/crypto/proof_source.h"
9 9
10 namespace net { 10 namespace net {
11 namespace test { 11 namespace test {
12 12
13 class FailingProofSource : public ProofSource { 13 class FailingProofSource : public ProofSource {
14 public: 14 public:
15 bool GetProof(const QuicSocketAddress& server_address,
16 const std::string& hostname,
17 const std::string& server_config,
18 QuicVersion quic_version,
19 base::StringPiece chlo_hash,
20 const QuicTagVector& connection_options,
21 QuicReferenceCountedPointer<ProofSource::Chain>* out_chain,
22 QuicCryptoProof* out_proof) override;
23
24 void GetProof(const QuicSocketAddress& server_address, 15 void GetProof(const QuicSocketAddress& server_address,
25 const std::string& hostname, 16 const std::string& hostname,
26 const std::string& server_config, 17 const std::string& server_config,
27 QuicVersion quic_version, 18 QuicVersion quic_version,
28 base::StringPiece chlo_hash, 19 base::StringPiece chlo_hash,
29 const QuicTagVector& connection_options, 20 const QuicTagVector& connection_options,
30 std::unique_ptr<Callback> callback) override; 21 std::unique_ptr<Callback> callback) override;
31 }; 22 };
32 23
33 } // namespace test 24 } // namespace test
34 } // namespace net 25 } // namespace net
35 26
36 #endif // NET_QUIC_TEST_TOOLS_FAILING_PROOF_SOURCE_H_ 27 #endif // NET_QUIC_TEST_TOOLS_FAILING_PROOF_SOURCE_H_
OLDNEW
« no previous file with comments | « net/quic/test_tools/crypto_test_utils.cc ('k') | net/quic/test_tools/failing_proof_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698