| Index: chrome/browser/ui/passwords/password_manager_presenter.h
|
| diff --git a/chrome/browser/ui/passwords/password_manager_presenter.h b/chrome/browser/ui/passwords/password_manager_presenter.h
|
| index 52523cf000bead5a576da0e5e6f6b0b4513952e5..e3d7922cea0a4d425bf7fd837dfcb81ee2beaded 100644
|
| --- a/chrome/browser/ui/passwords/password_manager_presenter.h
|
| +++ b/chrome/browser/ui/passwords/password_manager_presenter.h
|
| @@ -95,7 +95,7 @@ class PasswordManagerPresenter
|
|
|
| // Send the password store's reply back to the handler.
|
| void OnGetPasswordStoreResults(
|
| - const std::vector<autofill::PasswordForm*>& results) override;
|
| + ScopedVector<autofill::PasswordForm> results) override;
|
| };
|
|
|
| // A short class to mediate requests to the password store for exceptions.
|
| @@ -108,7 +108,7 @@ class PasswordManagerPresenter
|
|
|
| // Send the password store's reply back to the handler.
|
| void OnGetPasswordStoreResults(
|
| - const std::vector<autofill::PasswordForm*>& results) override;
|
| + ScopedVector<autofill::PasswordForm> results) override;
|
| };
|
|
|
| // Password store consumer for populating the password list and exceptions.
|
|
|