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

Unified Diff: net/base/upload_data_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 | « no previous file | net/base/upload_data_stream.cc » ('j') | net/spdy/spdy_http_stream.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/upload_data_stream.h
===================================================================
--- net/base/upload_data_stream.h (revision 145922)
+++ net/base/upload_data_stream.h (working copy)
@@ -65,10 +65,16 @@
// Returns true if the upload data in the stream is entirely in memory.
bool IsInMemory() const;
- // This method is provided only to be used by unit tests.
+ private:
+ friend class SpdyHttpStreamSpdy2Test;
+ friend class SpdyHttpStreamSpdy3Test;
+ friend class SpdyNetworkTransactionSpdy2Test;
+ friend class SpdyNetworkTransactionSpdy3Test;
+
+ // These methods are provided only to be used by unit tests.
+ static void ResetMergeChunks();
static void set_merge_chunks(bool merge) { merge_chunks_ = merge; }
- private:
scoped_refptr<UploadData> upload_data_;
// Index of the current upload element (i.e. the element currently being
« no previous file with comments | « no previous file | net/base/upload_data_stream.cc » ('j') | net/spdy/spdy_http_stream.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698