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

Unified Diff: net/base/upload_data_stream.cc

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
Index: net/base/upload_data_stream.cc
===================================================================
--- net/base/upload_data_stream.cc (revision 145922)
+++ net/base/upload_data_stream.cc (working copy)
@@ -15,6 +15,12 @@
bool UploadDataStream::merge_chunks_ = true;
+// static
+void UploadDataStream::ResetMergeChunks() {
+ // WARNING: merge_chunks_ must match the above initializer.
+ merge_chunks_ = true;
+}
+
UploadDataStream::UploadDataStream(UploadData* upload_data)
: upload_data_(upload_data),
element_index_(0),

Powered by Google App Engine
This is Rietveld 408576698