Index: chrome/browser/chromeos/file_system_provider/request_manager.h |
diff --git a/chrome/browser/chromeos/file_system_provider/request_manager.h b/chrome/browser/chromeos/file_system_provider/request_manager.h |
index 0a37aaae4c6815557d2a0d51039f999439d1644c..0f092ac8c88f41edc30939d6b85ff8ed12b3a332 100644 |
--- a/chrome/browser/chromeos/file_system_provider/request_manager.h |
+++ b/chrome/browser/chromeos/file_system_provider/request_manager.h |
@@ -47,11 +47,11 @@ class RequestManager { |
virtual bool Execute(int request_id) = 0; |
// Success callback invoked by the providing extension in response to |
- // Execute(). It may be called more than once, until |has_next| is set to |
+ // Execute(). It may be called more than once, until |has_more| is set to |
// false. |
virtual void OnSuccess(int request_id, |
scoped_ptr<RequestValue> result, |
- bool has_next) = 0; |
+ bool has_more) = 0; |
// Error callback invoked by the providing extension in response to |
// Execute(). It can be called at most once. It can be also called if the |
@@ -91,12 +91,12 @@ class RequestManager { |
// what kind of request it is. |
int CreateRequest(RequestType type, scoped_ptr<HandlerInterface> handler); |
- // Handles successful response for the |request_id|. If |has_next| is false, |
+ // Handles successful response for the |request_id|. If |has_more| is false, |
// then the request is disposed, after handling the |response|. On error, |
// returns false, and the request is disposed. |
bool FulfillRequest(int request_id, |
scoped_ptr<RequestValue> response, |
- bool has_next); |
+ bool has_more); |
// Handles error response for the |request_id|. If handling the error fails, |
// returns false. Always disposes the request. |