summaryrefslogtreecommitdiffstats
path: root/net/base/upload_data_stream.h
diff options
context:
space:
mode:
authorsatish@chromium.org <satish@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-04 08:58:37 +0000
committersatish@chromium.org <satish@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-04 08:58:37 +0000
commit66ca8387165faa63b999b3d3080626cb4d8388b5 (patch)
treef3f33773a2c2a7814e54297eb30bb62e9fc65355 /net/base/upload_data_stream.h
parent02c89fbf01c7c7decffcb109220a400863798f0f (diff)
downloadchromium_src-66ca8387165faa63b999b3d3080626cb4d8388b5.zip
chromium_src-66ca8387165faa63b999b3d3080626cb4d8388b5.tar.gz
chromium_src-66ca8387165faa63b999b3d3080626cb4d8388b5.tar.bz2
Revert "Add chunked uploads support to SPDY"
This reverts commit 8431a6e7be70b1b50b0d5b851bbe728b7fef220f. TBR=satish git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76896 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/upload_data_stream.h')
-rw-r--r--net/base/upload_data_stream.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/net/base/upload_data_stream.h b/net/base/upload_data_stream.h
index decc3f6..f291140 100644
--- a/net/base/upload_data_stream.h
+++ b/net/base/upload_data_stream.h
@@ -27,12 +27,6 @@ class UploadDataStream {
IOBuffer* buf() const { return buf_; }
size_t buf_len() const { return buf_len_; }
- // TODO(satish): We should ideally have UploadDataStream expose a Read()
- // method which returns data in a caller provided IOBuffer. That would do away
- // with this method and make the interface cleaner as well with less memmove
- // calls.
- size_t GetMaxBufferSize() const { return kBufSize; }
-
// Call to indicate that a portion of the stream's buffer was consumed. This
// call modifies the stream's buffer so that it contains the next segment of
// the upload data to be consumed.
@@ -56,16 +50,6 @@ class UploadDataStream {
// position < size.
bool eof() const { return eof_; }
- // Returns whether the data available in buf() includes the last chunk in a
- // chunked data stream. This method returns true once the final chunk has been
- // placed in the IOBuffer returned by buf(), in contrast to eof() which
- // returns true only after the data in buf() has been consumed.
- bool IsOnLastChunk() const;
-
-#if defined(UNIT_TEST)
- static void set_merge_chunks(bool merge) { merge_chunks_ = merge; }
-#endif
-
private:
enum { kBufSize = 16384 };
@@ -109,10 +93,6 @@ class UploadDataStream {
// Whether there is no data left to read.
bool eof_;
- // TODO(satish): Remove this once we have a better way to unit test POST
- // requests with chunked uploads.
- static bool merge_chunks_;
-
DISALLOW_COPY_AND_ASSIGN(UploadDataStream);
};