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

Unified Diff: chrome/browser/sync_file_system/remote_file_sync_service.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/remote_file_sync_service.cc
diff --git a/chrome/browser/sync_file_system/remote_file_sync_service.cc b/chrome/browser/sync_file_system/remote_file_sync_service.cc
index 105c25900bb99ed825acddb19961196f597a1cff..9f74505d202f3df403efa8e1e2ff558c72aed4bd 100644
--- a/chrome/browser/sync_file_system/remote_file_sync_service.cc
+++ b/chrome/browser/sync_file_system/remote_file_sync_service.cc
@@ -8,10 +8,9 @@
namespace sync_file_system {
-scoped_ptr<RemoteFileSyncService>
-RemoteFileSyncService::CreateForBrowserContext(
- content::BrowserContext* context,
- TaskLogger* task_logger) {
+std::unique_ptr<RemoteFileSyncService>
+RemoteFileSyncService::CreateForBrowserContext(content::BrowserContext* context,
+ TaskLogger* task_logger) {
return drive_backend::SyncEngine::CreateForBrowserContext(context,
task_logger);
}
« no previous file with comments | « chrome/browser/sync_file_system/remote_file_sync_service.h ('k') | chrome/browser/sync_file_system/sync_file_system_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698