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

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

Issue 2626443002: Fix QUIC crash when ProofSource::GetProof fails (Closed)
Patch Set: Created 3 years, 11 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef NET_QUIC_TEST_TOOLS_FAILING_PROOF_SOURCE_H_
6 #define NET_QUIC_TEST_TOOLS_FAILING_PROOF_SOURCE_H_
7
8 #include "net/quic/core/crypto/proof_source.h"
9
10 namespace net {
11 namespace test {
12
13 class FailingProofSource : public ProofSource {
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,
25 const std::string& hostname,
26 const std::string& server_config,
27 QuicVersion quic_version,
28 base::StringPiece chlo_hash,
29 const QuicTagVector& connection_options,
30 std::unique_ptr<Callback> callback) override;
31 };
32
33 } // namespace test
34 } // namespace net
35
36 #endif // NET_QUIC_TEST_TOOLS_FAILING_PROOF_SOURCE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698