Chromium Code Reviews| Index: net/quic/quic_reliable_client_stream.h |
| diff --git a/net/quic/quic_reliable_client_stream.h b/net/quic/quic_reliable_client_stream.h |
| index 7c5986d4fe0328ddc6b7e76eea4513f4fa7920b1..c8c438672ae5042ece0810a1d552df17dc3ecd7e 100644 |
| --- a/net/quic/quic_reliable_client_stream.h |
| +++ b/net/quic/quic_reliable_client_stream.h |
| @@ -7,6 +7,7 @@ |
| #ifndef NET_QUIC_QUIC_RELIABLE_CLIENT_STREAM_H_ |
| #define NET_QUIC_QUIC_RELIABLE_CLIENT_STREAM_H_ |
| +#include "net/base/ip_endpoint.h" |
| #include "net/base/upload_data_stream.h" |
| #include "net/http/http_request_info.h" |
| #include "net/http/http_response_info.h" |
| @@ -64,6 +65,10 @@ class NET_EXPORT_PRIVATE QuicReliableClientStream : public ReliableQuicStream { |
| void SetDelegate(Delegate* delegate); |
| Delegate* GetDelegate() { return delegate_; } |
| + virtual int WriteData(base::StringPiece data, bool fin) OVERRIDE; |
| + |
| + IPEndPoint GetPeerAddress(); |
|
willchan no longer on Chromium
2012/11/21 22:55:05
Looks weird to me that this is non-const. Is there
Ryan Hamilton
2012/11/21 23:06:35
Hm. Perhaps it could be. The issue is that the i
|
| + |
| private: |
| Delegate* delegate_; |