Chromium Code Reviews| Index: components/autofill/core/browser/ui/save_card_bubble_controller.h |
| diff --git a/chrome/browser/ui/autofill/save_card_bubble_controller.h b/components/autofill/core/browser/ui/save_card_bubble_controller.h |
| similarity index 63% |
| rename from chrome/browser/ui/autofill/save_card_bubble_controller.h |
| rename to components/autofill/core/browser/ui/save_card_bubble_controller.h |
| index 6f74eb3f09414ffee90bbd3e3c8f7bf04c2c129f..6e7cc10e54bb5277bfd9f46f567176609e230c59 100644 |
| --- a/chrome/browser/ui/autofill/save_card_bubble_controller.h |
| +++ b/components/autofill/core/browser/ui/save_card_bubble_controller.h |
| @@ -2,8 +2,8 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#ifndef CHROME_BROWSER_UI_AUTOFILL_SAVE_CARD_BUBBLE_CONTROLLER_H_ |
| -#define CHROME_BROWSER_UI_AUTOFILL_SAVE_CARD_BUBBLE_CONTROLLER_H_ |
| +#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_UI_SAVE_CARD_BUBBLE_CONTROLLER_H_ |
| +#define COMPONENTS_AUTOFILL_CORE_BROWSER_UI_SAVE_CARD_BUBBLE_CONTROLLER_H_ |
| #include <memory> |
| #include <vector> |
| @@ -31,6 +31,20 @@ class SaveCardBubbleController { |
| // Returns the card that will be uploaded if the user accepts. |
| virtual const CreditCard GetCard() const = 0; |
| + // Returns the CVC image icon. |
|
Mathieu
2017/04/03 19:46:09
... resource ID.
Jared Saul
2017/04/03 21:19:18
Done.
|
| + virtual int GetCvcImageRid() const = 0; |
| + |
| + // Returns whether the dialog should include a field requesting the card's CVC |
| + // from the user. |
| + virtual bool ShouldRequestCvcFromUser() const = 0; |
| + |
| + // Takes in the CVC provided by the user in the save card bubble, to be |
| + // populated in the final request. |
| + virtual void SetCvcEnteredByUser(const base::string16& cvc) = 0; |
| + |
| + // Returns the CVC provided by the user in the save card bubble. |
| + virtual base::string16 GetCvcEnteredByUser() const = 0; |
| + |
| // Interaction. |
| virtual void OnSaveButton() = 0; |
| virtual void OnCancelButton() = 0; |
| @@ -43,6 +57,9 @@ class SaveCardBubbleController { |
| // Returns empty vector if no legal message should be shown. |
| virtual const LegalMessageLines& GetLegalMessageLines() const = 0; |
| + // Utilities. |
| + virtual bool InputCvcIsValid(const base::string16& input_text) const = 0; |
| + |
| protected: |
| SaveCardBubbleController() {} |
| virtual ~SaveCardBubbleController() {} |
| @@ -52,4 +69,4 @@ class SaveCardBubbleController { |
| } // namespace autofill |
| -#endif // CHROME_BROWSER_UI_AUTOFILL_SAVE_CARD_BUBBLE_CONTROLLER_H_ |
| +#endif // COMPONENTS_AUTOFILL_CORE_BROWSER_UI_SAVE_CARD_BUBBLE_CONTROLLER_H_ |