| Index: net/base/file_stream.h
|
| diff --git a/net/base/file_stream.h b/net/base/file_stream.h
|
| index 0fb3fb265697f317df69a0915979035bd2970461..5ce7306368b14b473259cc0b287191852cf7cd5c 100644
|
| --- a/net/base/file_stream.h
|
| +++ b/net/base/file_stream.h
|
| @@ -81,6 +81,14 @@ class NET_EXPORT FileStream {
|
| // automatically closed when FileStream is destructed.
|
| virtual int OpenSync(const base::FilePath& path, int open_flags);
|
|
|
| + // Returns ERR_IO_PENDING and closes the file asynchronously, calling
|
| + // |callback| when done.
|
| + virtual int Close(const CompletionCallback& callback);
|
| +
|
| + // Closes the file immediately and returns OK. If the file is open
|
| + // asynchronously, Close(const CompletionCallback&) should be used instead.
|
| + virtual int CloseSync();
|
| +
|
| // Returns true if Open succeeded and Close has not been called.
|
| virtual bool IsOpen() const;
|
|
|
|
|