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

Unified Diff: chrome/browser/ui/passwords/manage_passwords_bubble_model.cc

Issue 1550053002: 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/ui/passwords/manage_passwords_bubble_model.cc
diff --git a/chrome/browser/ui/passwords/manage_passwords_bubble_model.cc b/chrome/browser/ui/passwords/manage_passwords_bubble_model.cc
index aa8541ae12aa1991701ba9b398082fb4037fae9f..dcf994ce3d7ad06e13a1a860773f795e4410a1b0 100644
--- a/chrome/browser/ui/passwords/manage_passwords_bubble_model.cc
+++ b/chrome/browser/ui/passwords/manage_passwords_bubble_model.cc
@@ -60,7 +60,7 @@ ScopedVector<const autofill::PasswordForm> DeepCopyForms(
[](const autofill::PasswordForm* form) {
return new autofill::PasswordForm(*form);
});
- return result.Pass();
+ return result;
}
password_bubble_experiment::SmartLockBranding GetSmartLockBrandingState(

Powered by Google App Engine
This is Rietveld 408576698