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

Unified Diff: net/quic/chromium/quic_http_stream.cc

Issue 2330983002: Removes get upload progress plumbing. URLRequest queries the UploadDataStream directly. (Closed)
Patch Set: Feedback incorporated. Created 4 years, 3 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/chromium/quic_http_stream.h ('k') | net/spdy/spdy_http_stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/chromium/quic_http_stream.cc
diff --git a/net/quic/chromium/quic_http_stream.cc b/net/quic/chromium/quic_http_stream.cc
index 5aba9263cf2661058a84d647c2c60df206639ddd..ce0740172940ba6a51d4b99067f26fde0c674b5e 100644
--- a/net/quic/chromium/quic_http_stream.cc
+++ b/net/quic/chromium/quic_http_stream.cc
@@ -292,14 +292,6 @@ int QuicHttpStream::SendRequest(const HttpRequestHeaders& request_headers,
return rv > 0 ? OK : rv;
}
-UploadProgress QuicHttpStream::GetUploadProgress() const {
- if (!request_body_stream_)
- return UploadProgress();
-
- return UploadProgress(request_body_stream_->position(),
- request_body_stream_->size());
-}
-
int QuicHttpStream::ReadResponseHeaders(const CompletionCallback& callback) {
CHECK(callback_.is_null());
CHECK(!callback.is_null());
« no previous file with comments | « net/quic/chromium/quic_http_stream.h ('k') | net/spdy/spdy_http_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698