| Index: chrome/browser/ui/views/password_generation_bubble_view.h
|
| diff --git a/chrome/browser/ui/views/password_generation_bubble_view.h b/chrome/browser/ui/views/password_generation_bubble_view.h
|
| index bce9aff6da6c6b192748f5f6917bd898f4e85287..38529a3bb93101b9a90a0a586281b19498bb0c99 100644
|
| --- a/chrome/browser/ui/views/password_generation_bubble_view.h
|
| +++ b/chrome/browser/ui/views/password_generation_bubble_view.h
|
| @@ -29,6 +29,7 @@ class PasswordGenerationBubbleView : public views::BubbleDelegateView,
|
| public views::ButtonListener {
|
| public:
|
| PasswordGenerationBubbleView(const gfx::Rect& anchor_rect,
|
| + int max_length,
|
| views::View* anchor_view,
|
| content::RenderViewHost* render_view_host);
|
| virtual ~PasswordGenerationBubbleView();
|
| @@ -49,6 +50,9 @@ class PasswordGenerationBubbleView : public views::BubbleDelegateView,
|
| // Location that the bubble points to
|
| gfx::Rect anchor_rect_;
|
|
|
| + // Maximum password length;
|
| + int max_length_;
|
| +
|
| // RenderViewHost associated with the button that spawned this bubble.
|
| content::RenderViewHost* render_view_host_;
|
|
|
|
|