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

Unified Diff: components/payments/content/payment_request_dialog.h

Issue 2779283002: [Web Payments] Implement the CVC Unmask dialog. (Closed)
Patch Set: BUILD Created 3 years, 8 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/payments/content/payment_request_dialog.h
diff --git a/components/payments/content/payment_request_dialog.h b/components/payments/content/payment_request_dialog.h
index 8859167c9f06ef360a6513bbc571c830c2f75da2..c73413963b47c789e05e3108cb830b302954269a 100644
--- a/components/payments/content/payment_request_dialog.h
+++ b/components/payments/content/payment_request_dialog.h
@@ -5,6 +5,13 @@
#ifndef COMPONENTS_PAYMENTS_CONTENT_PAYMENT_REQUEST_DIALOG_H_
#define COMPONENTS_PAYMENTS_CONTENT_PAYMENT_REQUEST_DIALOG_H_
+#include "base/memory/weak_ptr.h"
+#include "components/autofill/core/browser/payments/full_card_request.h"
+
+namespace content {
+class WebContents;
+}
+
namespace payments {
// Used to interact with a cross-platform Payment Request dialog.
@@ -17,6 +24,14 @@ class PaymentRequestDialog {
virtual void CloseDialog() = 0;
virtual void ShowErrorMessage() = 0;
+
+ // Shows the CVC unmask sheet and starts a FullCardRequest with the info
+ // entered by the user.
+ virtual void ShowCvcUnmaskPrompt(
+ const autofill::CreditCard& credit_card,
+ base::WeakPtr<autofill::payments::FullCardRequest::ResultDelegate>
+ result_delegate,
+ content::WebContents* web_contents) = 0;
};
} // namespace payments
« no previous file with comments | « components/payments/content/payment_request_delegate.h ('k') | components/payments/content/payment_request_state.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698