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

Unified Diff: net/spdy/spdy_stream.h

Issue 10689034: SPDY - chunked upload - speech recognition doesn't work with SPDY/3 (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 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
« no previous file with comments | « net/spdy/spdy_session_spdy3_unittest.cc ('k') | net/spdy/spdy_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_stream.h
===================================================================
--- net/spdy/spdy_stream.h (revision 145922)
+++ 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:
« no previous file with comments | « net/spdy/spdy_session_spdy3_unittest.cc ('k') | net/spdy/spdy_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698