Index: net/disk_cache/file.h |
=================================================================== |
--- net/disk_cache/file.h (revision 55505) |
+++ net/disk_cache/file.h (working copy) |
@@ -61,10 +61,6 @@ |
bool Write(const void* buffer, size_t buffer_len, size_t offset, |
FileIOCallback* callback, bool* completed); |
- // Performs asynchronous writes, but doesn't notify when done. Automatically |
- // deletes buffer when done. |
- bool PostWrite(const void* buffer, size_t buffer_len, size_t offset); |
- |
// Sets the file's length. The file is truncated or extended with zeros to |
// the new length. |
bool SetLength(size_t length); |
@@ -79,7 +75,7 @@ |
// Performs the actual asynchronous write. If notify is set and there is no |
// callback, the call will be re-synchronized. |
bool AsyncWrite(const void* buffer, size_t buffer_len, size_t offset, |
- bool notify, FileIOCallback* callback, bool* completed); |
+ FileIOCallback* callback, bool* completed); |
private: |
bool init_; |