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

Unified Diff: chrome/common/extensions/api/file_system_provider_internal.idl

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/common/extensions/api/file_system_provider_internal.idl
diff --git a/chrome/common/extensions/api/file_system_provider_internal.idl b/chrome/common/extensions/api/file_system_provider_internal.idl
index d23a796603caa71b57986b6558eca133ef8c90f3..c349e9a9c2198906e900fcbcec026424154cbf4d 100644
--- a/chrome/common/extensions/api/file_system_provider_internal.idl
+++ b/chrome/common/extensions/api/file_system_provider_internal.idl
@@ -40,7 +40,7 @@ namespace fileSystemProviderInternal {
DOMString fileSystemId,
long requestId,
fileSystemProvider.EntryMetadata[] entries,
- boolean hasNext);
+ boolean hasMore);
// Internal. Error callback of the <code>onReadDirectoryRequested</code>
// event. Must be called when reading a directory fails.
@@ -81,7 +81,7 @@ namespace fileSystemProviderInternal {
DOMString fileSystemId,
long requestId,
ArrayBuffer data,
- boolean hasNext);
+ boolean hasMore);
// Internal. Error callback of the <code>onReadFileRequested</code>
// event. Must be called when reading a file fails.

Powered by Google App Engine
This is Rietveld 408576698