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

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

Issue 2463093003: Landing Recent QUIC changes until Sat Oct 29 14:59:35. (Closed)
Patch Set: add change to quiartc_session_test.cc Created 4 years, 1 month 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/stateless_rejector.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 88d00cb99cb36be68eab29be3d33d73bc9bf84f4..cb76d56683f74daf5107b06727bd04d04dfb88e8 100644
--- a/net/tools/quic/test_tools/quic_test_client.h
+++ b/net/tools/quic/test_tools/quic_test_client.h
@@ -141,9 +141,8 @@ class QuicTestClient : public QuicSpdyStream::Visitor,
ssize_t Send(const void* buffer, size_t size);
bool response_complete() const;
bool response_headers_complete() const;
- const BalsaHeaders* response_headers() const;
+ const SpdyHeaderBlock* response_headers() const;
int64_t response_size() const;
- int response_header_size() const;
int64_t response_body_size() const;
size_t bytes_read() const;
size_t bytes_written() const;
@@ -298,7 +297,7 @@ class QuicTestClient : public QuicSpdyStream::Visitor,
bool response_complete_;
bool response_headers_complete_;
- mutable BalsaHeaders response_headers_;
+ mutable SpdyHeaderBlock response_headers_;
// Parsed response trailers (if present), copied from the stream in OnClose.
SpdyHeaderBlock response_trailers_;
@@ -309,8 +308,6 @@ class QuicTestClient : public QuicSpdyStream::Visitor,
// prefer bytes_read() and bytes_written() member functions.
uint64_t bytes_read_;
uint64_t bytes_written_;
- // The number of uncompressed HTTP header bytes received.
- int response_header_size_;
// The number of HTTP body bytes received.
int64_t response_body_size_;
// True if we tried to connect already since the last call to Disconnect().
« no previous file with comments | « net/tools/quic/stateless_rejector.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