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

Unified Diff: chrome/browser/chromeos/file_system_provider/request_manager.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/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.

Powered by Google App Engine
This is Rietveld 408576698