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

Unified Diff: net/tools/quic/end_to_end_test.cc

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/quic/core/spdy_utils_test.cc ('k') | net/tools/quic/quic_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/end_to_end_test.cc
diff --git a/net/tools/quic/end_to_end_test.cc b/net/tools/quic/end_to_end_test.cc
index 869eab2de220f79991757bd0c17a963fa45bed5a..f7efc2e1d8ea0e02520112b54d00a8b90a5df079 100644
--- a/net/tools/quic/end_to_end_test.cc
+++ b/net/tools/quic/end_to_end_test.cc
@@ -1868,10 +1868,9 @@ class TestAckListener : public QuicAckListenerInterface {
class TestResponseListener : public QuicClient::ResponseListener {
public:
void OnCompleteResponse(QuicStreamId id,
- const BalsaHeaders& response_headers,
+ const SpdyHeaderBlock& response_headers,
const string& response_body) override {
- string debug_string;
- response_headers.DumpHeadersToString(&debug_string);
+ string debug_string = response_headers.DebugString();
DVLOG(1) << "response for stream " << id << " " << debug_string << "\n"
<< response_body;
}
« no previous file with comments | « net/quic/core/spdy_utils_test.cc ('k') | net/tools/quic/quic_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698