| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_AUTOFILL_PASSWORD_GENERATION_POPUP_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_AUTOFILL_PASSWORD_GENERATION_POPUP_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_AUTOFILL_PASSWORD_GENERATION_POPUP_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_AUTOFILL_PASSWORD_GENERATION_POPUP_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include "base/strings/string16.h" | 8 #include "base/strings/string16.h" |
| 9 #include "chrome/browser/ui/autofill/autofill_popup_view_delegate.h" | 9 #include "chrome/browser/ui/autofill/autofill_popup_view_delegate.h" |
| 10 | 10 |
| 11 namespace gfx { |
| 12 class FontList; |
| 13 } |
| 14 |
| 11 namespace autofill { | 15 namespace autofill { |
| 12 | 16 |
| 13 class PasswordGenerationPopupController : public AutofillPopupViewDelegate { | 17 class PasswordGenerationPopupController : public AutofillPopupViewDelegate { |
| 14 public: | 18 public: |
| 15 // Space above and below the password section. | 19 // Space above and below the password section. |
| 16 static const int kPasswordVerticalPadding = 14; | 20 static const int kPasswordVerticalPadding = 16; |
| 17 | 21 |
| 18 // Space above and below help section. | 22 // Space above and below help section. |
| 19 static const int kHelpVerticalPadding = 15; | 23 static const int kHelpVerticalPadding = 15; |
| 20 | 24 |
| 21 // Spacing between the border of the popup and any text. | 25 // Spacing between the border of the popup and any text. |
| 22 static const int kHorizontalPadding = 9; | 26 static const int kHorizontalPadding = 10; |
| 23 | 27 |
| 24 // Called by the view when the help link is clicked. | 28 // Called by the view when the saved passwords link is clicked. |
| 25 virtual void OnHelpLinkClicked() = 0; | 29 virtual void OnSavedPasswordsLinkClicked() = 0; |
| 26 | 30 |
| 27 // Accessors | 31 // Accessors |
| 32 virtual const gfx::FontList& font_list() const = 0; |
| 28 virtual const gfx::Rect& password_bounds() const = 0; | 33 virtual const gfx::Rect& password_bounds() const = 0; |
| 29 virtual const gfx::Rect& divider_bounds() const = 0; | 34 virtual const gfx::Rect& divider_bounds() const = 0; |
| 30 virtual const gfx::Rect& help_bounds() const = 0; | 35 virtual const gfx::Rect& help_bounds() const = 0; |
| 36 virtual bool display_password() const = 0; |
| 31 virtual bool password_selected() const = 0; | 37 virtual bool password_selected() const = 0; |
| 32 virtual base::string16 password() const = 0; | 38 virtual base::string16 password() const = 0; |
| 33 | 39 |
| 34 // Translated strings | 40 // Translated strings |
| 41 virtual base::string16 SuggestedText() = 0; |
| 35 virtual base::string16 HelpText() = 0; | 42 virtual base::string16 HelpText() = 0; |
| 36 virtual base::string16 LearnMoreLink() = 0; | 43 virtual base::string16 SavedPasswordsLink() = 0; |
| 37 | 44 |
| 38 protected: | 45 protected: |
| 39 virtual ~PasswordGenerationPopupController() {} | 46 virtual ~PasswordGenerationPopupController() {} |
| 40 }; | 47 }; |
| 41 | 48 |
| 42 } // namespace autofill | 49 } // namespace autofill |
| 43 | 50 |
| 44 #endif // CHROME_BROWSER_UI_AUTOFILL_PASSWORD_GENERATION_POPUP_CONTROLLER_H_ | 51 #endif // CHROME_BROWSER_UI_AUTOFILL_PASSWORD_GENERATION_POPUP_CONTROLLER_H_ |
| OLD | NEW |