| // 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_PAYMENTS_PAYMENT_REQUEST_H_ |
| #define COMPONENTS_PAYMENTS_PAYMENT_REQUEST_H_ |
| |
| #include <memory> |
| #include <string> |
| #include <vector> |
| |
| #include "components/payments/currency_formatter.h" |
| #include "components/payments/payment_request.mojom.h" |
| #include "mojo/public/cpp/bindings/binding.h" |
| |
| namespace autofill { |
| class AutofillProfile; |
| class CreditCard; |
| } |
| |
| namespace content { |
| class WebContents; |
| } |
| |
| namespace payments { |
| |
| class PaymentRequestDelegate; |
| class PaymentRequestWebContentsManager; |
| |
| class PaymentRequest : payments::mojom::PaymentRequest { |
| public: |
| PaymentRequest( |
| content::WebContents* web_contents, |
| std::unique_ptr<PaymentRequestDelegate> delegate, |
| PaymentRequestWebContentsManager* manager, |
| mojo::InterfaceRequest<payments::mojom::PaymentRequest> request); |
| ~PaymentRequest() override; |
| |
| // payments::mojom::PaymentRequest "stub" |
| void Init(payments::mojom::PaymentRequestClientPtr client, |
| std::vector<payments::mojom::PaymentMethodDataPtr> methodData, |
| payments::mojom::PaymentDetailsPtr details, |
| payments::mojom::PaymentOptionsPtr options) override; |
| void Show() override; |
| void UpdateWith(payments::mojom::PaymentDetailsPtr details) override {} |
| void Abort() override {} |
| void Complete(payments::mojom::PaymentComplete result) override {} |
| void CanMakePayment() override {} |
| |
| void Cancel(); |
| void OnError(); |
| |
| // Returns the CurrencyFormatter instance for this PaymentRequest. |
| // |locale_name| should be the result of the browser's GetApplicationLocale(). |
| // Note: Having multiple currencies per PaymentRequest is not supported; hence |
| // the CurrencyFormatter is cached here. |
| CurrencyFormatter* GetOrCreateCurrencyFormatter( |
| const std::string& currency_code, |
| const base::Optional<std::string> currency_system, |
| const std::string& locale_name); |
| |
| // Returns the Autofill Profile, representing the shipping address and contact |
| // information, currently selected for this PaymentRequest flow. If |
| // unpopulated, populates with and returns the 0th profile on record for this |
| // user, if it exists; or nullptr otherwise. Profile is owned by the request |
| // object, not the caller. |
| autofill::AutofillProfile* GetCurrentlySelectedProfile(); |
| |
| // Returns the currently selected credit card for this PaymentRequest flow. |
| // It's not guaranteed to be complete. Returns nullptr if there is no selected |
| // card. |
| autofill::CreditCard* GetCurrentlySelectedCreditCard(); |
| |
| payments::mojom::PaymentDetails* details() { return details_.get(); } |
| content::WebContents* web_contents() { return web_contents_; } |
| |
| private: |
| content::WebContents* web_contents_; |
| std::unique_ptr<PaymentRequestDelegate> delegate_; |
| // |manager_| owns this PaymentRequest. |
| PaymentRequestWebContentsManager* manager_; |
| mojo::Binding<payments::mojom::PaymentRequest> binding_; |
| payments::mojom::PaymentRequestClientPtr client_; |
| payments::mojom::PaymentDetailsPtr details_; |
| std::unique_ptr<CurrencyFormatter> currency_formatter_; |
| std::unique_ptr<autofill::AutofillProfile> profile_; |
| |
| DISALLOW_COPY_AND_ASSIGN(PaymentRequest); |
| }; |
| |
| } // namespace payments |
| |
| #endif // COMPONENTS_PAYMENTS_PAYMENT_REQUEST_H_ |