| 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 37420d6b5379a62c82510545a0cd3804d26b1e55..a1cd3565ab391dc041d6f259150c3731b463b4a4 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/request_manager.h
|
| +++ b/chrome/browser/chromeos/file_system_provider/request_manager.h
|
| @@ -33,11 +33,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
|
| @@ -52,12 +52,12 @@ class RequestManager {
|
| // case of an error (eg. too many requests).
|
| int CreateRequest(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.
|
|
|