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

Unified Diff: net/spdy/spdy_stream.cc

Issue 1755017: A couple of SPDY server push bug fixes.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 8 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/spdy/spdy_session.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_stream.cc
===================================================================
--- net/spdy/spdy_stream.cc (revision 45934)
+++ net/spdy/spdy_stream.cc (working copy)
@@ -489,13 +489,17 @@
int SpdyStream::DoReadBody() {
// TODO(mbelshe): merge SpdyStreamParser with SpdyStream and then this
// makes sense.
+ if (response_complete_) {
+ io_state_ = STATE_READ_BODY_COMPLETE;
+ return OK;
+ }
return ERR_IO_PENDING;
}
int SpdyStream::DoReadBodyComplete(int result) {
// TODO(mbelshe): merge SpdyStreamParser with SpdyStream and then this
// makes sense.
- return ERR_IO_PENDING;
+ return result;
}
void SpdyStream::UpdateHistograms() {
« no previous file with comments | « net/spdy/spdy_session.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698