Chromium Code Reviews| Index: storage/browser/fileapi/file_stream_writer.h |
| diff --git a/storage/browser/fileapi/file_stream_writer.h b/storage/browser/fileapi/file_stream_writer.h |
| index ec59ec0f84d6111826c95dab54f2761a3c66044c..37318601de54b92760fbad50f22ef9f74d0bf90a 100644 |
| --- a/storage/browser/fileapi/file_stream_writer.h |
| +++ b/storage/browser/fileapi/file_stream_writer.h |
| @@ -46,6 +46,10 @@ class FileStreamWriter { |
| // callback will be run on the thread where Write() was called when the write |
| // has completed. |
| // |
| + // After the last write, Flush() will be called unless the flushing on |
|
hashimoto
2014/10/16 21:39:03
How about replacing "will be" with "must be"?
IIUC
mtomasz
2014/10/17 00:26:07
Done.
|
| + // completion is explicitly disabled for the file system type, the writer is |
| + // created for. See FileSystemContext::ShouldFlushOnWriteCompletion(). |
| + // |
| // This errors out (either synchronously or via callback) with: |
| // net::ERR_FILE_NOT_FOUND: When the target file is not found. |
| // net::ERR_ACCESS_DENIED: When the target file is a directory or |