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

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

Issue 2910913002: WIP.
Patch Set: rebase Created 3 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 8801959330ae25f693869ed0654c13ba32de552a..f9a3abaa58dfeb3d55cf17798d7fa00b0264c151 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
@@ -97,9 +97,11 @@ void DriveServiceWrapper::GetFileResource(
void DriveServiceWrapper::GetFileListInDirectory(
const std::string& directory_resource_id,
+ const std::string& team_drive_id,
const google_apis::FileListCallback& callback) {
DCHECK(sequece_checker_.CalledOnValidSequence());
- drive_service_->GetFileListInDirectory(directory_resource_id, callback);
+ drive_service_->GetFileListInDirectory(directory_resource_id, team_drive_id,
+ callback);
}
void DriveServiceWrapper::RemoveResourceFromDirectory(

Powered by Google App Engine
This is Rietveld 408576698