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

Unified Diff: net/base/upload_data.h

Issue 10408042: net: Fix a regression that broke file uploading with http authentication (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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.cc » ('j') | net/base/upload_data.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/upload_data.h
diff --git a/net/base/upload_data.h b/net/base/upload_data.h
index c9796ac807b1a0fbfc872f8ab3e2078a72cfc4c5..83934772566baf5fa5d21d004d0340c2fcef429d 100644
--- a/net/base/upload_data.h
+++ b/net/base/upload_data.h
@@ -129,8 +129,9 @@ class NET_EXPORT UploadData
// Returns the number of bytes remaining to read.
uint64 BytesRemaining();
- // Resets the offset to zero, so that the element can be reread.
- void ResetOffset() { offset_ = 0; }
+ // Resets the offset to zero and closes the file stream if opened, so
+ // that the element can be reread.
+ void ResetOffset();
private:
// Returns a FileStream opened for reading for this element, positioned
« no previous file with comments | « no previous file | net/base/upload_data.cc » ('j') | net/base/upload_data.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698