Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(575)

Unified Diff: chrome/browser/chromeos/file_system_provider/fileapi/file_stream_reader.h

Issue 304533003: [fsp] Rename has_next to has_more. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698