| Index: net/base/file_stream_context.h
|
| diff --git a/net/base/file_stream_context.h b/net/base/file_stream_context.h
|
| index 8d037bcf4fb369f8d9e8ab4c9697ff47d175d384..1c17cc950eb86c662c463c7c4642e0e1372a1c96 100644
|
| --- a/net/base/file_stream_context.h
|
| +++ b/net/base/file_stream_context.h
|
| @@ -189,11 +189,13 @@ class FileStream::Context {
|
|
|
| // This callback executes on the main calling thread. It informs the caller
|
| // about the result of the ReadFile call.
|
| + // The |read_file_ret| parameter contains the return value of the ReadFile
|
| + // call.
|
| // The |bytes_read| contains the number of bytes read from the file, if
|
| // ReadFile succeeds.
|
| // The |os_error| parameter contains the value of the last error returned by
|
| // the ReadFile API.
|
| - void ReadAsyncResult(DWORD bytes_read, DWORD os_error);
|
| + void ReadAsyncResult(BOOL read_file_ret, DWORD bytes_read, DWORD os_error);
|
|
|
| #elif defined(OS_POSIX)
|
| // ReadFileImpl() is a simple wrapper around read() that handles EINTR
|
|
|