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

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

Issue 1423463003: Rename QuicDataStream to QuicSpdyStream. No behavior change. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@105435080
Patch Set: Created 5 years, 2 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/quic_spdy_client_stream.h ('k') | net/tools/quic/quic_spdy_server_stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/quic_spdy_client_stream.cc
diff --git a/net/tools/quic/quic_spdy_client_stream.cc b/net/tools/quic/quic_spdy_client_stream.cc
index 5113c48731fb128bcd37fa4faf4fd249f47cf36f..2d8e7bc741264c88d2d8d051f3caa47ef590f800 100644
--- a/net/tools/quic/quic_spdy_client_stream.cc
+++ b/net/tools/quic/quic_spdy_client_stream.cc
@@ -21,7 +21,7 @@ namespace tools {
QuicSpdyClientStream::QuicSpdyClientStream(QuicStreamId id,
QuicClientSession* session)
- : QuicDataStream(id, session),
+ : QuicSpdyStream(id, session),
content_length_(-1),
response_code_(0),
header_bytes_read_(0),
@@ -37,13 +37,13 @@ void QuicSpdyClientStream::OnStreamFrame(const QuicStreamFrame& frame) {
<< "Aborting request.";
CloseWriteSide();
}
- QuicDataStream::OnStreamFrame(frame);
+ QuicSpdyStream::OnStreamFrame(frame);
}
void QuicSpdyClientStream::OnStreamHeadersComplete(bool fin,
size_t frame_len) {
header_bytes_read_ = frame_len;
- QuicDataStream::OnStreamHeadersComplete(fin, frame_len);
+ QuicSpdyStream::OnStreamHeadersComplete(fin, frame_len);
if (!ParseResponseHeaders(decompressed_headers().data(),
decompressed_headers().length())) {
Reset(QUIC_BAD_APPLICATION_PAYLOAD);
« no previous file with comments | « net/tools/quic/quic_spdy_client_stream.h ('k') | net/tools/quic/quic_spdy_server_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698