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

Unified Diff: chrome/browser/ui/views/autofill/password_generation_popup_view_views.h

Issue 342833002: [Password Generation] Update Aura UI (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Latest coments Created 6 years, 6 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/autofill/password_generation_popup_view_views.h
diff --git a/chrome/browser/ui/views/autofill/password_generation_popup_view_views.h b/chrome/browser/ui/views/autofill/password_generation_popup_view_views.h
index 28f07cc9f68b2bc83cd1d7d6a750ae4736a4624c..cb13eead6647391b52909cf39fc2ee1adbc6dda7 100644
--- a/chrome/browser/ui/views/autofill/password_generation_popup_view_views.h
+++ b/chrome/browser/ui/views/autofill/password_generation_popup_view_views.h
@@ -29,8 +29,10 @@ class PasswordGenerationPopupViewViews : public AutofillPopupBaseView,
// PasswordGenerationPopupView implementation
virtual void Show() OVERRIDE;
virtual void Hide() OVERRIDE;
+ virtual int GetHeight(int width) OVERRIDE;
virtual void UpdateBoundsAndRedrawPopup() OVERRIDE;
virtual void PasswordSelectionUpdated() OVERRIDE;
+ virtual bool IsPointInPasswordBounds(const gfx::Point& point) OVERRIDE;
private:
virtual ~PasswordGenerationPopupViewViews();
@@ -38,6 +40,9 @@ class PasswordGenerationPopupViewViews : public AutofillPopupBaseView,
// Helper function to create |password_view_|.
void CreatePasswordView();
+ // Helper function to set bounds of all elements for a given width.
+ void SetBoundsForWidth(int width);
+
// views:Views implementation.
virtual void Layout() OVERRIDE;
virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
@@ -50,6 +55,9 @@ class PasswordGenerationPopupViewViews : public AutofillPopupBaseView,
views::View* password_view_;
views::StyledLabel* help_label_;
+ // Size of the divider between the password and the help text.
+ gfx::Rect divider_bounds_;
+
// Controller for this view. Weak reference.
PasswordGenerationPopupController* controller_;

Powered by Google App Engine
This is Rietveld 408576698