diff options
author | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-23 03:32:44 +0000 |
---|---|---|
committer | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-23 03:32:44 +0000 |
commit | 1e6dd971b2db13a94be8a76b6553c0011b625293 (patch) | |
tree | 99e91ad6a3775f4179f05f27fbeafef4ca49142f /chrome/browser/views/password_manager_view.h | |
parent | a1e5ce5773bda214b6bc71705bc1311826cbf8a0 (diff) | |
download | chromium_src-1e6dd971b2db13a94be8a76b6553c0011b625293.zip chromium_src-1e6dd971b2db13a94be8a76b6553c0011b625293.tar.gz chromium_src-1e6dd971b2db13a94be8a76b6553c0011b625293.tar.bz2 |
BUG=1007
Added a dialog for removing exceptions of password manager
Added the PasswordManagerExceptionsView class for removing exception of password manager added by "Never for this site" button. Also added a button in "Minor Tweaks" tab for openning the dialog.
Review URL: http://codereview.chromium.org/18494
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8544 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/password_manager_view.h')
-rw-r--r-- | chrome/browser/views/password_manager_view.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/chrome/browser/views/password_manager_view.h b/chrome/browser/views/password_manager_view.h index 1a02914..c3a1b1a 100644 --- a/chrome/browser/views/password_manager_view.h +++ b/chrome/browser/views/password_manager_view.h @@ -49,7 +49,7 @@ class PasswordManagerTableModel : public views::TableModel, // Return the PasswordForm at the specified index. PasswordForm* GetPasswordFormAt(int row); - private: + protected: // Wraps the PasswordForm from the database and caches the display URL for // quick sorting. struct PasswordRow { @@ -64,9 +64,6 @@ class PasswordManagerTableModel : public views::TableModel, scoped_ptr<PasswordForm> form; }; - // Cancel any pending login query involving a callback. - void CancelLoginsQuery(); - // The web data service associated with the currently active profile. WebDataService* web_data_service() { return profile_->GetWebDataService(Profile::EXPLICIT_ACCESS); @@ -85,6 +82,10 @@ class PasswordManagerTableModel : public views::TableModel, Profile* profile_; + private: + // Cancel any pending login query involving a callback. + void CancelLoginsQuery(); + DISALLOW_EVIL_CONSTRUCTORS(PasswordManagerTableModel); }; |