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

Unified Diff: chrome/browser/sync_file_system/drive_backend/drive_service_wrapper.cc

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
Index: chrome/browser/sync_file_system/drive_backend/drive_service_wrapper.cc
diff --git a/chrome/browser/sync_file_system/drive_backend/drive_service_wrapper.cc b/chrome/browser/sync_file_system/drive_backend/drive_service_wrapper.cc
index d0facd089fde53a7d9cfb2c7b8990fd7c76dc8ba..24f4476153c01b43410f92b126d7a380ca877582 100644
--- a/chrome/browser/sync_file_system/drive_backend/drive_service_wrapper.cc
+++ b/chrome/browser/sync_file_system/drive_backend/drive_service_wrapper.cc
@@ -58,13 +58,13 @@ void DriveServiceWrapper::GetAboutResource(
void DriveServiceWrapper::GetChangeList(
int64 start_changestamp,
- const google_apis::GetResourceListCallback& callback) {
+ const google_apis::ChangeListCallback& callback) {
drive_service_->GetChangeList(start_changestamp, callback);
}
void DriveServiceWrapper::GetRemainingChangeList(
const GURL& next_link,
- const google_apis::GetResourceListCallback& callback) {
+ const google_apis::ChangeListCallback& callback) {
drive_service_->GetRemainingChangeList(next_link, callback);
}

Powered by Google App Engine
This is Rietveld 408576698