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

Unified Diff: chrome/test/data/extensions/api_test/file_system_provider/read_file/test.js

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
« no previous file with comments | « chrome/test/data/extensions/api_test/file_system_provider/read_directory/test.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/file_system_provider/read_file/test.js
diff --git a/chrome/test/data/extensions/api_test/file_system_provider/read_file/test.js b/chrome/test/data/extensions/api_test/file_system_provider/read_file/test.js
index 6cff9d2be9bf8e01534d3c4de77dd54166946864..f9c196c80645a882be888ef4f0093c6cb2409dcd 100644
--- a/chrome/test/data/extensions/api_test/file_system_provider/read_file/test.js
+++ b/chrome/test/data/extensions/api_test/file_system_provider/read_file/test.js
@@ -198,7 +198,7 @@ function onReadFileRequested(
reader.onload = function(e) {
onSuccess(
e.target.result,
- index < textToSendInChunks.length - 1 /* has_next */);
+ index < textToSendInChunks.length - 1 /* hasMore */);
};
reader.readAsArrayBuffer(new Blob([item]));
« no previous file with comments | « chrome/test/data/extensions/api_test/file_system_provider/read_directory/test.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698