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

Unified Diff: chrome/browser/chromeos/file_system_provider/request_manager.cc

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.cc
diff --git a/chrome/browser/chromeos/file_system_provider/request_manager.cc b/chrome/browser/chromeos/file_system_provider/request_manager.cc
index eec9c95415059475d0cdef50c4be80b16b0939cc..928e95e50d944cc05206ed4e506c3d3a8dfbfb9a 100644
--- a/chrome/browser/chromeos/file_system_provider/request_manager.cc
+++ b/chrome/browser/chromeos/file_system_provider/request_manager.cc
@@ -73,17 +73,17 @@ int RequestManager::CreateRequest(RequestType type,
bool RequestManager::FulfillRequest(int request_id,
scoped_ptr<RequestValue> response,
- bool has_next) {
+ bool has_more) {
RequestMap::iterator request_it = requests_.find(request_id);
if (request_it == requests_.end())
return false;
- request_it->second->handler->OnSuccess(request_id, response.Pass(), has_next);
+ request_it->second->handler->OnSuccess(request_id, response.Pass(), has_more);
FOR_EACH_OBSERVER(
- Observer, observers_, OnRequestFulfilled(request_id, has_next));
+ Observer, observers_, OnRequestFulfilled(request_id, has_more));
- if (!has_next)
+ if (!has_more)
DestroyRequest(request_id);
else
request_it->second->timeout_timer.Reset();

Powered by Google App Engine
This is Rietveld 408576698