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

Unified Diff: chrome/browser/sync_file_system/local/local_file_sync_service.cc

Issue 1545283002: Convert Pass()→std::move() in //chrome/browser/ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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/local/local_file_sync_service.cc
diff --git a/chrome/browser/sync_file_system/local/local_file_sync_service.cc b/chrome/browser/sync_file_system/local/local_file_sync_service.cc
index d28c141ac5d7acc4817717ed01be00d4e0e594ae..d9904fbb7aa533bf00e5d7957322aa533233cd78 100644
--- a/chrome/browser/sync_file_system/local/local_file_sync_service.cc
+++ b/chrome/browser/sync_file_system/local/local_file_sync_service.cc
@@ -117,7 +117,7 @@ scoped_ptr<LocalFileSyncService> LocalFileSyncService::CreateForTesting(
scoped_ptr<LocalFileSyncService> sync_service(
new LocalFileSyncService(profile, env));
sync_service->sync_context_->set_mock_notify_changes_duration_in_sec(0);
- return sync_service.Pass();
+ return sync_service;
}
LocalFileSyncService::~LocalFileSyncService() {

Powered by Google App Engine
This is Rietveld 408576698