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

Unified Diff: net/tools/quic/test_tools/quic_test_client.h

Issue 2363393004: Remove usage of BalsaHeaders from QuicClient. Also move QuicDataToResend from QuicClient to QuicCli… (Closed)
Patch Set: Fix win Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/tools/quic/spdy_balsa_utils_test.cc ('k') | net/tools/quic/test_tools/quic_test_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/test_tools/quic_test_client.h
diff --git a/net/tools/quic/test_tools/quic_test_client.h b/net/tools/quic/test_tools/quic_test_client.h
index 8819794610f8462d9020d06eecc3663b82cbf098..3e52fc956dbb563013a2bac69f41e17a31e70305 100644
--- a/net/tools/quic/test_tools/quic_test_client.h
+++ b/net/tools/quic/test_tools/quic_test_client.h
@@ -253,12 +253,12 @@ class QuicTestClient : public test::SimpleClient,
private:
class TestClientDataToResend : public QuicClient::QuicDataToResend {
public:
- TestClientDataToResend(BalsaHeaders* headers,
- StringPiece body,
+ TestClientDataToResend(std::unique_ptr<SpdyHeaderBlock> headers,
+ base::StringPiece body,
bool fin,
QuicTestClient* test_client,
QuicAckListenerInterface* delegate)
- : QuicClient::QuicDataToResend(headers, body, fin),
+ : QuicClient::QuicDataToResend(std::move(headers), body, fin),
test_client_(test_client),
delegate_(delegate) {}
« no previous file with comments | « net/tools/quic/spdy_balsa_utils_test.cc ('k') | net/tools/quic/test_tools/quic_test_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698