Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2506)

Unified Diff: components/autofill/core/browser/autofill_save_card_infobar_delegate_mobile.h

Issue 1540423004: Add card details and legal message to Android save credit card infobar. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix android 64-bit compile. Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..ec59921745fa0acd0d06e1ecaff06ef4f866925f
--- /dev/null
+++ b/components/autofill/core/browser/autofill_save_card_infobar_delegate_mobile.h
@@ -0,0 +1,64 @@
+// 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 infobars {
+class InfoBarManager;
Justin Donnelly 2016/01/14 18:32:10 This is no longer necessary.
please use gerrit instead 2016/01/14 18:48:43 Done.
+}
+
+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_

Powered by Google App Engine
This is Rietveld 408576698