| Index: chrome/browser/ui/views/passwords/manage_password_item_view.h
|
| diff --git a/chrome/browser/ui/views/passwords/manage_password_item_view.h b/chrome/browser/ui/views/passwords/manage_password_item_view.h
|
| index 793f915026149256cb0feae843e5edb3a58a11d7..730742321f08ac8e2f7b9ae6b3fa01c178e60bf1 100644
|
| --- a/chrome/browser/ui/views/passwords/manage_password_item_view.h
|
| +++ b/chrome/browser/ui/views/passwords/manage_password_item_view.h
|
| @@ -74,8 +74,6 @@ class ManagePasswordItemView : public views::View {
|
| ManagePasswordItemView(
|
| ManagePasswordsBubbleModel* manage_passwords_bubble_model,
|
| autofill::PasswordForm password_form,
|
| - int field_1_width,
|
| - int field_2_width,
|
| Position position);
|
|
|
| private:
|
| @@ -86,8 +84,7 @@ class ManagePasswordItemView : public views::View {
|
| views::Label* GenerateUsernameLabel() const;
|
| views::Label* GeneratePasswordLabel() const;
|
|
|
| - // Build a two-label column set using the widths stored in |field_1_width_|
|
| - // and |field_2_width_|.
|
| + // Build a two-label column set.
|
| void BuildColumnSet(views::GridLayout*, int column_set_id);
|
|
|
| void NotifyClickedDelete();
|
| @@ -99,8 +96,6 @@ class ManagePasswordItemView : public views::View {
|
| ManagePasswordsBubbleModel* manage_passwords_bubble_model_;
|
| autofill::PasswordForm password_form_;
|
| bool delete_password_;
|
| - int field_1_width_;
|
| - int field_2_width_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(ManagePasswordItemView);
|
| };
|
|
|