Index: net/spdy/spdy_stream.h |
=================================================================== |
--- net/spdy/spdy_stream.h (revision 145640) |
+++ net/spdy/spdy_stream.h (working copy) |
@@ -20,7 +20,6 @@ |
#include "net/base/request_priority.h" |
#include "net/base/server_bound_cert_service.h" |
#include "net/base/ssl_client_cert_type.h" |
-#include "net/base/upload_data.h" |
#include "net/socket/ssl_client_socket.h" |
#include "net/spdy/spdy_framer.h" |
#include "net/spdy/spdy_protocol.h" |
@@ -41,8 +40,7 @@ |
// initiated by the server, only the SpdySession will maintain any reference, |
// until such a time as a client object requests a stream for the path. |
class NET_EXPORT_PRIVATE SpdyStream |
- : public base::RefCounted<SpdyStream>, |
- public ChunkCallback { |
+ : public base::RefCounted<SpdyStream> { |
public: |
// Delegate handles protocol specific behavior of spdy stream. |
class NET_EXPORT_PRIVATE Delegate { |
@@ -82,9 +80,6 @@ |
// Called when SpdyStream is closed. |
virtual void OnClose(int status) = 0; |
- // Sets the callback to be invoked when a new chunk is available to upload. |
- virtual void set_chunk_callback(ChunkCallback* callback) = 0; |
- |
protected: |
friend class base::RefCounted<Delegate>; |
virtual ~Delegate() {} |
@@ -254,9 +249,6 @@ |
// true. |
GURL GetUrl() const; |
- // ChunkCallback methods. |
- virtual void OnChunkAvailable() OVERRIDE; |
- |
int GetProtocolVersion() const; |
private: |