| Index: components/password_manager/content/browser/credential_manager_dispatcher.cc
|
| diff --git a/components/password_manager/content/browser/credential_manager_dispatcher.cc b/components/password_manager/content/browser/credential_manager_dispatcher.cc
|
| index 770b4849e1dec207228109e2ae494b1bfbe76964..3c97a5d177a5c22868dc087c547859c0594cb84e 100644
|
| --- a/components/password_manager/content/browser/credential_manager_dispatcher.cc
|
| +++ b/components/password_manager/content/browser/credential_manager_dispatcher.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "components/password_manager/content/browser/credential_manager_dispatcher.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/bind.h"
|
| #include "base/strings/string16.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| @@ -78,7 +80,7 @@ void CredentialManagerDispatcher::OnProvisionalSaveComplete() {
|
| // If the PasswordForm we were given does not match an existing
|
| // PasswordForm, ask the user if they'd like to save.
|
| client_->PromptUserToSaveOrUpdatePassword(
|
| - form_manager_.Pass(), CredentialSourceType::CREDENTIAL_SOURCE_API,
|
| + std::move(form_manager_), CredentialSourceType::CREDENTIAL_SOURCE_API,
|
| false);
|
| } else {
|
| // Otherwise, update the existing form, as we've been told by the site
|
|
|