Index: components/autofill/core/browser/autofill_save_card_infobar_delegate_mobile.h |
diff --git a/components/autofill/core/browser/autofill_save_card_infobar_delegate_mobile.h b/components/autofill/core/browser/autofill_save_card_infobar_delegate_mobile.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..7610d0cb2c1959dea4c9a309cbac6b20519741e3 |
--- /dev/null |
+++ b/components/autofill/core/browser/autofill_save_card_infobar_delegate_mobile.h |
@@ -0,0 +1,60 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_SAVE_CARD_INFOBAR_DELEGATE_MOBILE_H_ |
+#define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_SAVE_CARD_INFOBAR_DELEGATE_MOBILE_H_ |
+ |
+#include "base/callback.h" |
+#include "base/macros.h" |
+#include "base/memory/scoped_ptr.h" |
+#include "base/strings/string16.h" |
+#include "components/autofill/core/browser/autofill_cc_infobar_delegate.h" |
+#include "components/autofill/core/browser/legal_message_line.h" |
+ |
+namespace base { |
+class DictionaryValue; |
+} |
+ |
+namespace autofill { |
+ |
+class CreditCard; |
+ |
+// An InfoBarDelegate for saving credit cards on mobile devices. |
+class AutofillSaveCardInfoBarDelegateMobile : public AutofillCCInfoBarDelegate { |
+ public: |
+ AutofillSaveCardInfoBarDelegateMobile( |
+ bool upload, |
+ const CreditCard& card, |
+ scoped_ptr<base::DictionaryValue> legal_message, |
+ const base::Closure& save_card_callback); |
+ |
+ ~AutofillSaveCardInfoBarDelegateMobile() override; |
+ |
+ int issuer_icon_id() const { return issuer_icon_id_; } |
+ const base::string16& card_label() const { return card_label_; } |
+ const base::string16& card_sub_label() const { return card_sub_label_; } |
+ const LegalMessageLines& legal_messages() const { return legal_messages_; } |
+ |
+ // Called when a link in the legal message text was clicked. |
+ void OnLegalMessageLinkClicked(GURL url); |
+ |
+ private: |
+ // The resource ID for the icon that identifies the issuer of the card. |
+ int issuer_icon_id_; |
+ |
+ // The label for the card to show in the content of the infobar. |
+ base::string16 card_label_; |
+ |
+ // The sub-label for the card to show in the content of the infobar. |
+ base::string16 card_sub_label_; |
+ |
+ // The legal messages to show in the content of the infobar. |
+ LegalMessageLines legal_messages_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(AutofillSaveCardInfoBarDelegateMobile); |
+}; |
+ |
+} // namespace autofill |
+ |
+#endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_SAVE_CARD_INFOBAR_DELEGATE_MOBILE_H_ |