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

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

Issue 1873683002: Convert //chrome/browser/sync_file_system from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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_on_worker.cc
diff --git a/chrome/browser/sync_file_system/drive_backend/drive_service_on_worker.cc b/chrome/browser/sync_file_system/drive_backend/drive_service_on_worker.cc
index 7dc6f283812bc660053fcd475155ee1c25f6f673..837ee31a1238ce78e704b359631dc17c710cae49 100644
--- a/chrome/browser/sync_file_system/drive_backend/drive_service_on_worker.cc
+++ b/chrome/browser/sync_file_system/drive_backend/drive_service_on_worker.cc
@@ -400,10 +400,10 @@ google_apis::CancelCallback DriveServiceOnWorker::MultipartUploadExistingFile(
return google_apis::CancelCallback();
}
-scoped_ptr<drive::BatchRequestConfiguratorInterface>
+std::unique_ptr<drive::BatchRequestConfiguratorInterface>
DriveServiceOnWorker::StartBatchRequest() {
NOTREACHED();
- return scoped_ptr<drive::BatchRequestConfiguratorInterface>();
+ return std::unique_ptr<drive::BatchRequestConfiguratorInterface>();
}
google_apis::CancelCallback DriveServiceOnWorker::AuthorizeApp(

Powered by Google App Engine
This is Rietveld 408576698