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

Unified Diff: net/quic/quic_reliable_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/quic/quic_reliable_client_stream.h ('k') | net/quic/quic_session_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_reliable_client_stream.cc
diff --git a/net/quic/quic_reliable_client_stream.cc b/net/quic/quic_reliable_client_stream.cc
index 7b941e25af26da12502e1f0f142b1c4d1b225a65..bfa01742cf09bb13ec032e4db0328d0da95ed45d 100644
--- a/net/quic/quic_reliable_client_stream.cc
+++ b/net/quic/quic_reliable_client_stream.cc
@@ -18,7 +18,7 @@ namespace net {
QuicReliableClientStream::QuicReliableClientStream(QuicStreamId id,
QuicSpdySession* session,
const BoundNetLog& net_log)
- : QuicDataStream(id, session),
+ : QuicSpdyStream(id, session),
net_log_(net_log),
delegate_(nullptr),
headers_delivered_(false),
@@ -31,7 +31,7 @@ QuicReliableClientStream::~QuicReliableClientStream() {
void QuicReliableClientStream::OnStreamHeadersComplete(bool fin,
size_t frame_len) {
- QuicDataStream::OnStreamHeadersComplete(fin, frame_len);
+ QuicSpdyStream::OnStreamHeadersComplete(fin, frame_len);
// The delegate will read the headers via a posted task.
NotifyDelegateOfHeadersCompleteLater(frame_len);
}
@@ -72,7 +72,7 @@ void QuicReliableClientStream::OnCanWrite() {
QuicPriority QuicReliableClientStream::EffectivePriority() const {
if (delegate_ && delegate_->HasSendHeadersComplete()) {
- return QuicDataStream::EffectivePriority();
+ return QuicSpdyStream::EffectivePriority();
}
return QuicWriteBlockedList::kHighestPriority;
}
« no previous file with comments | « net/quic/quic_reliable_client_stream.h ('k') | net/quic/quic_session_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698