summaryrefslogtreecommitdiffstats
path: root/net/spdy/spdy_stream.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/spdy/spdy_stream.cc')
-rw-r--r--net/spdy/spdy_stream.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/net/spdy/spdy_stream.cc b/net/spdy/spdy_stream.cc
index 88b009d..102d318 100644
--- a/net/spdy/spdy_stream.cc
+++ b/net/spdy/spdy_stream.cc
@@ -205,6 +205,13 @@ void SpdyStream::DecreaseRecvWindowSize(int delta_window_size) {
session_->ResetStream(stream_id_, spdy::FLOW_CONTROL_ERROR);
}
+int SpdyStream::GetPeerAddress(AddressList* address) const {
+ return session_->GetPeerAddress(address);
+}
+
+bool SpdyStream::WasEverUsed() const {
+ return session_->WasEverUsed();
+}
base::Time SpdyStream::GetRequestTime() const {
return request_time_;