| Index: chrome/browser/extensions/api/passwords_private/passwords_private_delegate_impl.h
|
| diff --git a/chrome/browser/extensions/api/passwords_private/passwords_private_delegate_impl.h b/chrome/browser/extensions/api/passwords_private/passwords_private_delegate_impl.h
|
| index d7b05fa14c7e524a56a8de081d67a7a8c8bf20e7..55b87f518b98598be7555f32ac2c31cb8d271880 100644
|
| --- a/chrome/browser/extensions/api/passwords_private/passwords_private_delegate_impl.h
|
| +++ b/chrome/browser/extensions/api/passwords_private/passwords_private_delegate_impl.h
|
| @@ -43,7 +43,8 @@ class PasswordsPrivateDelegateImpl : public PasswordsPrivateDelegate,
|
| const std::vector<api::passwords_private::PasswordUiEntry>*
|
| GetSavedPasswordsList() const override;
|
| void SendPasswordExceptionsList() override;
|
| - const std::vector<std::string>* GetPasswordExceptionsList() const override;
|
| + const std::vector<api::passwords_private::ExceptionPair>*
|
| + GetPasswordExceptionsList() const override;
|
| void RemoveSavedPassword(
|
| const std::string& origin_url, const std::string& username) override;
|
| void RemovePasswordException(const std::string& exception_url) override;
|
| @@ -98,7 +99,7 @@ class PasswordsPrivateDelegateImpl : public PasswordsPrivateDelegate,
|
| // observers are added, this delegate can send the current lists without
|
| // having to request them from |password_manager_presenter_| again.
|
| std::vector<api::passwords_private::PasswordUiEntry> current_entries_;
|
| - std::vector<std::string> current_exceptions_;
|
| + std::vector<api::passwords_private::ExceptionPair> current_exceptions_;
|
|
|
| // Whether SetPasswordList and SetPasswordExceptionList have been called, and
|
| // whether this class has been initialized, meaning both have been called.
|
|
|