| 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..5f7353b2a33ac43e26223a0071ce5e87b1c422f5 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 SetBoundsForWidth(int width) OVERRIDE;
|
| virtual void UpdateBoundsAndRedrawPopup() OVERRIDE;
|
| virtual void PasswordSelectionUpdated() OVERRIDE;
|
| + virtual bool IsPointInPasswordBounds(const gfx::Point& point) OVERRIDE;
|
|
|
| private:
|
| virtual ~PasswordGenerationPopupViewViews();
|
| @@ -50,6 +52,8 @@ class PasswordGenerationPopupViewViews : public AutofillPopupBaseView,
|
| views::View* password_view_;
|
| views::StyledLabel* help_label_;
|
|
|
| + gfx::Rect divider_bounds_;
|
| +
|
| // Controller for this view. Weak reference.
|
| PasswordGenerationPopupController* controller_;
|
|
|
|
|