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

Unified Diff: chrome/browser/drive/drive_service_interface.h

Issue 309463002: drive: Change DriveServiceInterface::GetChangeList's callback type to ChangeListCallback (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
« no previous file with comments | « chrome/browser/drive/drive_api_service.cc ('k') | chrome/browser/drive/dummy_drive_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/drive/drive_service_interface.h
diff --git a/chrome/browser/drive/drive_service_interface.h b/chrome/browser/drive/drive_service_interface.h
index 1b393d6a0f1a17182e648d751fe1dfe35e24234e..ae46e6bd03d63828dd9ae1daa98662693d0bdb97 100644
--- a/chrome/browser/drive/drive_service_interface.h
+++ b/chrome/browser/drive/drive_service_interface.h
@@ -198,9 +198,9 @@ class DriveServiceInterface {
// |callback| must not be null.
virtual google_apis::CancelCallback GetChangeList(
int64 start_changestamp,
- const google_apis::GetResourceListCallback& callback) = 0;
+ const google_apis::ChangeListCallback& callback) = 0;
- // The result of GetChangeList() and GetAllResourceList() may be paged.
+ // The result of GetChangeList() may be paged.
// In such a case, a next link to fetch remaining result is returned.
// The page token can be used for this method. |callback| will be called upon
// completion.
@@ -208,12 +208,12 @@ class DriveServiceInterface {
// |next_link| must not be empty. |callback| must not be null.
virtual google_apis::CancelCallback GetRemainingChangeList(
const GURL& next_link,
- const google_apis::GetResourceListCallback& callback) = 0;
+ const google_apis::ChangeListCallback& callback) = 0;
- // The result of GetResourceListInDirectory(), Search() and SearchByTitle()
- // may be paged. In such a case, a next link to fetch remaining result is
- // returned. The page token can be used for this method. |callback| will be
- // called upon completion.
+ // The result of GetAllResourceList(), GetResourceListInDirectory(), Search()
+ // and SearchByTitle() may be paged. In such a case, a next link to fetch
+ // remaining result is returned. The page token can be used for this method.
+ // |callback| will be called upon completion.
//
// |next_link| must not be empty. |callback| must not be null.
virtual google_apis::CancelCallback GetRemainingFileList(
« no previous file with comments | « chrome/browser/drive/drive_api_service.cc ('k') | chrome/browser/drive/dummy_drive_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698