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

Unified Diff: net/quic/quic_reliable_client_stream.h

Issue 11364068: Add a QuicHttpStream class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix bugs Created 8 years, 1 month 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/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_;

Powered by Google App Engine
This is Rietveld 408576698