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

Unified Diff: net/spdy/spdy_http_stream.cc

Issue 403393003: HTTP retry support. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 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 7ae844133890cad55135488700abe4d6ba9e650b..2924b3deb71cfb4a90aa12b57b44bc6f18f88438 100644
--- a/net/spdy/spdy_http_stream.cc
+++ b/net/spdy/spdy_http_stream.cc
@@ -184,6 +184,10 @@ int64 SpdyHttpStream::GetTotalReceivedBytes() const {
return stream_->raw_received_bytes();
}
+int64 SpdyHttpStream::GetReceivedBodyLength() const {
mmenke 2014/07/22 14:57:41 This seems to violate the API.
+ return 0;
+}
+
bool SpdyHttpStream::GetLoadTimingInfo(LoadTimingInfo* load_timing_info) const {
if (stream_closed_) {
if (!closed_stream_has_load_timing_info_)
@@ -534,4 +538,13 @@ void SpdyHttpStream::SetPriority(RequestPriority priority) {
// |stream_|.
}
+void SpdyHttpStream::SetRestartInfo(int64 read_offset, const void* hash,
+ size_t hash_length) {
+ // Nothing to do here.
+}
+
+void SpdyHttpStream::GetHash(void* output, size_t len) {
+ // Nothing to do here.
+}
+
} // namespace net

Powered by Google App Engine
This is Rietveld 408576698