Chromium Code Reviews| Index: chrome/browser/ui/autofill/save_card_bubble_controller_impl.h |
| diff --git a/chrome/browser/ui/autofill/save_card_bubble_controller_impl.h b/chrome/browser/ui/autofill/save_card_bubble_controller_impl.h |
| index aa633492bd0fbe63a7d6b39086756a216e9014ae..9521c5bb4776f56a6849c19e0e16628a6da6a341 100644 |
| --- a/chrome/browser/ui/autofill/save_card_bubble_controller_impl.h |
| +++ b/chrome/browser/ui/autofill/save_card_bubble_controller_impl.h |
| @@ -66,6 +66,7 @@ class SaveCardBubbleControllerImpl |
| void OnBubbleClosed() override; |
| const LegalMessageLines& GetLegalMessageLines() const override; |
| + void setShowUploadConfirmTitle(bool show_upload_confirm_title) override; |
|
Shanfeng
2017/06/27 04:00:31
s/set/Set. Looks like the first character of every
Jared Saul
2017/06/27 16:38:02
Done.
|
| // Used to check if an entered CVC value is a valid CVC for the current card. |
| // Valid CVCs are a certain length for their card type (4 for AMEX, 3 |
| @@ -116,6 +117,10 @@ class SaveCardBubbleControllerImpl |
| // The value of the CVC entered by the user (if it was requested). |
| base::string16 cvc_entered_by_user_; |
| + // Whether the normal title or the "Confirm [card]" title should be shown |
| + // during upload save. |
| + bool show_upload_confirm_title_{false}; |
| + |
| // Contains the details of the card that will be saved if the user accepts. |
| CreditCard card_; |