| Index: net/base/file_stream.h
|
| diff --git a/net/base/file_stream.h b/net/base/file_stream.h
|
| index 89db65e15b5ae49e50de78874e64c3babf7df640..dadb191a86a2d9fb9695ccfe127d9d1d1c20fe03 100644
|
| --- a/net/base/file_stream.h
|
| +++ b/net/base/file_stream.h
|
| @@ -62,14 +62,13 @@ class NET_EXPORT FileStream {
|
| // Returns true if Open succeeded and Close has not been called.
|
| virtual bool IsOpen() const;
|
|
|
| - // Adjust the position from where data is read asynchronously.
|
| - // Upon success, ERR_IO_PENDING is returned and |callback| will be run
|
| - // on the thread where Seek() was called with the the stream position
|
| - // relative to the start of the file. Otherwise, an error code is returned.
|
| - // It is invalid to request any asynchronous operations while there is an
|
| - // in-flight asynchronous operation.
|
| - virtual int Seek(base::File::Whence whence, int64 offset,
|
| - const Int64CompletionCallback& callback);
|
| + // Adjust the position from the start of the file where data is read
|
| + // asynchronously. Upon success, ERR_IO_PENDING is returned and |callback|
|
| + // will be run on the thread where Seek() was called with the the stream
|
| + // position relative to the start of the file. Otherwise, an error code is
|
| + // returned. It is invalid to request any asynchronous operations while there
|
| + // is an in-flight asynchronous operation.
|
| + virtual int Seek(int64 offset, const Int64CompletionCallback& callback);
|
|
|
| // Call this method to read data from the current stream position
|
| // asynchronously. Up to buf_len bytes will be copied into buf. (In
|
|
|