Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_PAYMENTS_PAYMENT_REQUEST_IMPL_H_ | 5 #ifndef COMPONENTS_PAYMENTS_PAYMENT_REQUEST_IMPL_H_ |
| 6 #define CHROME_BROWSER_PAYMENTS_PAYMENT_REQUEST_IMPL_H_ | 6 #define COMPONENTS_PAYMENTS_PAYMENT_REQUEST_IMPL_H_ |
| 7 | |
| 8 #include <memory> | |
| 7 | 9 |
| 8 #include "components/payments/payment_request.mojom.h" | 10 #include "components/payments/payment_request.mojom.h" |
| 9 #include "mojo/public/cpp/bindings/binding.h" | 11 #include "mojo/public/cpp/bindings/binding.h" |
| 10 | 12 |
| 11 namespace content { | 13 namespace content { |
| 12 class WebContents; | 14 class WebContents; |
| 13 } | 15 } |
| 14 | 16 |
| 15 namespace payments { | 17 namespace payments { |
| 16 | 18 |
| 17 class PaymentRequestImpl : payments::mojom::PaymentRequest, | 19 class PaymentRequestDelegate; |
| 18 public base::RefCounted<PaymentRequestImpl> { | 20 class PaymentRequestWebContentsManager; |
| 21 | |
| 22 class PaymentRequestImpl : payments::mojom::PaymentRequest { | |
|
sky
2017/01/09 18:55:32
One of the reasons we standardized on putting all
Mathieu
2017/01/09 19:17:42
Thanks, I've changed this.
| |
| 19 public: | 23 public: |
| 20 PaymentRequestImpl( | 24 PaymentRequestImpl( |
| 21 content::WebContents* web_contents, | 25 content::WebContents* web_contents, |
| 26 std::unique_ptr<PaymentRequestDelegate> delegate, | |
| 27 PaymentRequestWebContentsManager* manager, | |
| 22 mojo::InterfaceRequest<payments::mojom::PaymentRequest> request); | 28 mojo::InterfaceRequest<payments::mojom::PaymentRequest> request); |
| 29 ~PaymentRequestImpl() override; | |
| 23 | 30 |
| 24 // payments::mojom::PaymentRequest "stub" | 31 // payments::mojom::PaymentRequest "stub" |
| 25 void Init(payments::mojom::PaymentRequestClientPtr client, | 32 void Init(payments::mojom::PaymentRequestClientPtr client, |
| 26 std::vector<payments::mojom::PaymentMethodDataPtr> methodData, | 33 std::vector<payments::mojom::PaymentMethodDataPtr> methodData, |
| 27 payments::mojom::PaymentDetailsPtr details, | 34 payments::mojom::PaymentDetailsPtr details, |
| 28 payments::mojom::PaymentOptionsPtr options) override; | 35 payments::mojom::PaymentOptionsPtr options) override; |
| 29 void Show() override; | 36 void Show() override; |
| 30 void UpdateWith(payments::mojom::PaymentDetailsPtr details) override {} | 37 void UpdateWith(payments::mojom::PaymentDetailsPtr details) override {} |
| 31 void Abort() override {} | 38 void Abort() override {} |
| 32 void Complete(payments::mojom::PaymentComplete result) override {} | 39 void Complete(payments::mojom::PaymentComplete result) override {} |
| 33 void CanMakePayment() override {} | 40 void CanMakePayment() override {} |
| 34 | 41 |
| 35 void Cancel(); | 42 void Cancel(); |
| 36 void OnError(); | 43 void OnError(); |
| 37 payments::mojom::PaymentDetails* details() { return details_.get(); } | 44 payments::mojom::PaymentDetails* details() { return details_.get(); } |
| 38 | 45 |
| 39 content::WebContents* web_contents() { return web_contents_; } | 46 content::WebContents* web_contents() { return web_contents_; } |
| 40 | 47 |
| 41 private: | 48 private: |
| 42 friend class base::RefCounted<PaymentRequestImpl>; | |
| 43 ~PaymentRequestImpl() override; | |
| 44 | |
| 45 content::WebContents* web_contents_; | 49 content::WebContents* web_contents_; |
| 50 std::unique_ptr<PaymentRequestDelegate> delegate_; | |
| 51 // |manager_| owns this PaymentRequestImpl. | |
| 52 PaymentRequestWebContentsManager* manager_; | |
| 46 mojo::Binding<payments::mojom::PaymentRequest> binding_; | 53 mojo::Binding<payments::mojom::PaymentRequest> binding_; |
| 47 payments::mojom::PaymentRequestClientPtr client_; | 54 payments::mojom::PaymentRequestClientPtr client_; |
| 48 payments::mojom::PaymentDetailsPtr details_; | 55 payments::mojom::PaymentDetailsPtr details_; |
| 49 | 56 |
| 50 DISALLOW_COPY_AND_ASSIGN(PaymentRequestImpl); | 57 DISALLOW_COPY_AND_ASSIGN(PaymentRequestImpl); |
| 51 }; | 58 }; |
| 52 | 59 |
| 53 } // namespace payments | 60 } // namespace payments |
| 54 | 61 |
| 55 void CreatePaymentRequestHandler( | 62 #endif // COMPONENTS_PAYMENTS_PAYMENT_REQUEST_IMPL_H_ |
| 56 content::WebContents* web_contents, | |
| 57 mojo::InterfaceRequest<payments::mojom::PaymentRequest> request); | |
| 58 | |
| 59 #endif // CHROME_BROWSER_PAYMENTS_PAYMENT_REQUEST_IMPL_H_ | |
| OLD | NEW |