Index: chrome/browser/chromeos/file_system_provider/fileapi/file_stream_reader.h |
diff --git a/chrome/browser/chromeos/file_system_provider/fileapi/file_stream_reader.h b/chrome/browser/chromeos/file_system_provider/fileapi/file_stream_reader.h |
index 7c0b91e429b2d899057a0a5bd639d92f29fa91d8..6515699855cc9052516146f17665d1e5cc8193d6 100644 |
--- a/chrome/browser/chromeos/file_system_provider/fileapi/file_stream_reader.h |
+++ b/chrome/browser/chromeos/file_system_provider/fileapi/file_stream_reader.h |
@@ -61,11 +61,11 @@ class FileStreamReader : public webkit_blob::FileStreamReader { |
// Called when a file system provider returns chunk of read data. Note, that |
// this may be called multiple times per single Read() call, as long as |
- // |has_next| is set to true. |result| is set to success only if reading is |
+ // |has_more| is set to true. |result| is set to success only if reading is |
// successful, and the file has not changed while reading. |
void OnReadChunkReceived(const net::CompletionCallback& callback, |
int chunk_length, |
- bool has_next, |
+ bool has_more, |
base::File::Error result); |
// Called when fetching length of the file is completed with either a success |