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

Unified Diff: net/spdy/spdy_http_stream.cc

Issue 6134003: Prototype of chunked transfer encoded POST. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 11 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
Index: net/spdy/spdy_http_stream.cc
diff --git a/net/spdy/spdy_http_stream.cc b/net/spdy/spdy_http_stream.cc
index 15acff7f9c1911db5880352d81109e94a880f215..6a6abb241f84a1bd83a07c0d3ae822a3a1ffdae4 100644
--- a/net/spdy/spdy_http_stream.cc
+++ b/net/spdy/spdy_http_stream.cc
@@ -264,7 +264,7 @@ int SpdyHttpStream::OnSendBody() {
bool SpdyHttpStream::OnSendBodyComplete(int status) {
CHECK(request_body_stream_.get());
- request_body_stream_->DidConsume(status);
+ request_body_stream_->MarkConsumedAndFillBuffer(status);
return request_body_stream_->eof();
}

Powered by Google App Engine
This is Rietveld 408576698