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

Unified Diff: chrome/browser/password_manager/auto_signin_infobar_delegate_unittest.cc

Issue 1551033002: Convert Pass()→std::move() in //chrome (Android edition) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Enable RVO by making types match 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/password_manager/auto_signin_infobar_delegate_unittest.cc
diff --git a/chrome/browser/password_manager/auto_signin_infobar_delegate_unittest.cc b/chrome/browser/password_manager/auto_signin_infobar_delegate_unittest.cc
index 908aaa4ddbd71766065b07f90ed6a45a788d2614..95254980be45fdc1e21a586e5fc4e0b5bbe1ca7b 100644
--- a/chrome/browser/password_manager/auto_signin_infobar_delegate_unittest.cc
+++ b/chrome/browser/password_manager/auto_signin_infobar_delegate_unittest.cc
@@ -48,7 +48,7 @@ scoped_ptr<ConfirmInfoBarDelegate>
AutoSigninFirstRunInfoBarDelegateTest::CreateDelegate() {
scoped_ptr<ConfirmInfoBarDelegate> delegate(
new TestAutoSigninFirstRunInfoBarDelegate(web_contents()));
- return delegate.Pass();
+ return delegate;
}
PrefService* AutoSigninFirstRunInfoBarDelegateTest::prefs() {

Powered by Google App Engine
This is Rietveld 408576698