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

Unified Diff: net/base/upload_data.h

Issue 10388221: Revert 138168 - 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') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/upload_data.h
===================================================================
--- net/base/upload_data.h (revision 138174)
+++ net/base/upload_data.h (working copy)
@@ -129,9 +129,8 @@
// Returns the number of bytes remaining to read.
uint64 BytesRemaining();
- // Resets the offset to zero and closes the file stream if opened, so
- // that the element can be reread.
- void ResetOffset();
+ // Resets the offset to zero, so that the element can be reread.
+ void ResetOffset() { offset_ = 0; }
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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698