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

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

Issue 1042803002: Drive: Move inner structures of DriveAPIService under drive namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix tests. Created 5 years, 9 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_uploader_wrapper.cc
diff --git a/chrome/browser/sync_file_system/drive_backend/drive_uploader_wrapper.cc b/chrome/browser/sync_file_system/drive_backend/drive_uploader_wrapper.cc
index e03e95d6107cbb62e704ae247208608a114bc50f..77f065fea87ce4a4f8dbb373fb4c7569fea9acda 100644
--- a/chrome/browser/sync_file_system/drive_backend/drive_uploader_wrapper.cc
+++ b/chrome/browser/sync_file_system/drive_backend/drive_uploader_wrapper.cc
@@ -18,7 +18,7 @@ void DriveUploaderWrapper::UploadExistingFile(
const std::string& resource_id,
const base::FilePath& local_file_path,
const std::string& content_type,
- const drive::DriveUploaderInterface::UploadExistingFileOptions& options,
+ const drive::UploadExistingFileOptions& options,
const drive::UploadCompletionCallback& callback) {
DCHECK(sequence_checker_.CalledOnValidSequencedThread());
drive_uploader_->UploadExistingFile(
@@ -35,7 +35,7 @@ void DriveUploaderWrapper::UploadNewFile(
const base::FilePath& local_file_path,
const std::string& title,
const std::string& content_type,
- const drive::DriveUploaderInterface::UploadNewFileOptions& options,
+ const drive::UploadNewFileOptions& options,
const drive::UploadCompletionCallback& callback) {
DCHECK(sequence_checker_.CalledOnValidSequencedThread());
drive_uploader_->UploadNewFile(

Powered by Google App Engine
This is Rietveld 408576698