| 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 b2cf817fd0256e1da8f43cbef4f20ccd027a1ec4..b9174036092af9a9938c19bddd37acf1b3c63751 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
|
| @@ -39,8 +39,8 @@ class PasswordsPrivateDelegateImpl : public PasswordsPrivateDelegate,
|
| ~PasswordsPrivateDelegateImpl() override;
|
|
|
| // PasswordsPrivateDelegate implementation.
|
| - void AddObserver(Observer* observer) override;
|
| - void RemoveObserver(Observer* observer) override;
|
| + void SendSavedPasswordsList() override;
|
| + void SendPasswordExceptionsList() override;
|
| void RemoveSavedPassword(
|
| const std::string& origin_url, const std::string& username) override;
|
| void RemovePasswordException(const std::string& exception_url) override;
|
| @@ -83,8 +83,6 @@ class PasswordsPrivateDelegateImpl : public PasswordsPrivateDelegate,
|
| void RequestShowPasswordInternal(const std::string& origin_url,
|
| const std::string& username,
|
| content::WebContents* web_contents);
|
| - void SendSavedPasswordsList();
|
| - void SendPasswordExceptionsList();
|
|
|
| // Not owned by this class.
|
| Profile* profile_;
|
| @@ -117,9 +115,6 @@ class PasswordsPrivateDelegateImpl : public PasswordsPrivateDelegate,
|
| // NativeWindow for the window where the API was called.
|
| content::WebContents* web_contents_;
|
|
|
| - // The observers.
|
| - base::ObserverList<Observer> observers_;
|
| -
|
| // Map from origin URL and username to the index of |password_list_| at which
|
| // the corresponding entry resides.
|
| std::map<std::string, size_t> login_pair_to_index_map_;
|
|
|