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

Unified Diff: webkit/fileapi/file_writer_delegate.h

Issue 9402014: net: FileStream::Read/Write() to take IOBuffer* instead of char* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 8 years, 10 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: webkit/fileapi/file_writer_delegate.h
diff --git a/webkit/fileapi/file_writer_delegate.h b/webkit/fileapi/file_writer_delegate.h
index 995b057a23dc92056ad515cf12c5817825542d91..08346d231c9d8e8c65078281d41aa928a7ecfa9e 100644
--- a/webkit/fileapi/file_writer_delegate.h
+++ b/webkit/fileapi/file_writer_delegate.h
@@ -76,6 +76,7 @@ class FileWriterDelegate : public net::URLRequest::Delegate {
int64 total_bytes_written_;
int64 allowed_bytes_to_write_;
scoped_refptr<net::IOBufferWithSize> io_buffer_;
+ scoped_refptr<net::DrainableIOBuffer> cursor_;
scoped_ptr<net::FileStream> file_stream_;
net::URLRequest* request_;
base::WeakPtrFactory<FileWriterDelegate> weak_factory_;

Powered by Google App Engine
This is Rietveld 408576698