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

Unified Diff: sync/syncable/directory.cc

Issue 1539843002: Convert Pass()→std::move() in sync/ (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: sync/syncable/directory.cc
diff --git a/sync/syncable/directory.cc b/sync/syncable/directory.cc
index a999bf6b0867a3e62ed8d1711a42f99e7d2160fb..003cfe54b8308d12efb27cf0e615ce6521e4fe70 100644
--- a/sync/syncable/directory.cc
+++ b/sync/syncable/directory.cc
@@ -1175,7 +1175,7 @@ scoped_ptr<base::ListValue> Directory::GetNodeDetailsForType(
nodes->Append(node.release());
}
- return nodes.Pass();
+ return nodes;
}
bool Directory::CheckInvariantsOnTransactionClose(

Powered by Google App Engine
This is Rietveld 408576698