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

Unified Diff: components/password_manager/core/browser/test_password_store.cc

Issue 1548203002: Convert Pass()→std::move() in //components/[n-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix bad headers 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: components/password_manager/core/browser/test_password_store.cc
diff --git a/components/password_manager/core/browser/test_password_store.cc b/components/password_manager/core/browser/test_password_store.cc
index 77df359ef7c0bab4b250e5a5e0c3f2e818de1598..1f583525194821b25443a1dadf47951187a6451e 100644
--- a/components/password_manager/core/browser/test_password_store.cc
+++ b/components/password_manager/core/browser/test_password_store.cc
@@ -89,7 +89,7 @@ ScopedVector<autofill::PasswordForm> TestPasswordStore::FillMatchingLogins(
for (const auto& stored_form : forms) {
matched_forms.push_back(new autofill::PasswordForm(stored_form));
}
- return matched_forms.Pass();
+ return matched_forms;
}
void TestPasswordStore::ReportMetricsImpl(const std::string& sync_username,

Powered by Google App Engine
This is Rietveld 408576698