Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(648)

Unified Diff: chrome/browser/ui/views/passwords/manage_password_item_view.h

Issue 266973002: Password bubble: Create subviews for ManagePasswordsBubbleView. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
};

Powered by Google App Engine
This is Rietveld 408576698