Chromium Code Reviews| Index: chrome/browser/ui/views/passwords/manage_password_items_view.h |
| diff --git a/chrome/browser/ui/views/passwords/manage_password_items_view.h b/chrome/browser/ui/views/passwords/manage_password_items_view.h |
| index 379b78743f2b606bcf39f00675890987dbc29a87..da5af5725e379c3f487193651291a1630b4f7395 100644 |
| --- a/chrome/browser/ui/views/passwords/manage_password_items_view.h |
| +++ b/chrome/browser/ui/views/passwords/manage_password_items_view.h |
| @@ -11,6 +11,7 @@ |
| #include "ui/views/view.h" |
| class ManagePasswordsBubbleModel; |
| +class ManagePasswordsBubbleView; |
|
vasilii
2015/06/03 18:32:02
Remove
dvadym
2015/06/19 15:27:29
Thanks, done.
|
| // A custom view of individual credentials. The view is represented as a table |
| // where each row can be in three distinct states: |
| @@ -33,11 +34,15 @@ class ManagePasswordItemsView : public views::View { |
| void NotifyPasswordFormStatusChanged( |
| const autofill::PasswordForm& password_form, bool deleted); |
| + void NotifyAccountForUpdateWasSelected( |
| + const autofill::PasswordForm& password_form); |
| + |
| // Changes the views according to the state of |password_forms_rows_|. |
| void Refresh(); |
| std::vector<PasswordFormRow> password_forms_rows_; |
| ManagePasswordsBubbleModel* model_; |
| + ManagePasswordsBubbleView* bubble_view_; |
|
vabr (Chromium)
2015/06/03 16:33:26
This is unused.
dvadym
2015/06/19 15:27:29
Done.
|
| DISALLOW_COPY_AND_ASSIGN(ManagePasswordItemsView); |
| }; |