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

Side by Side Diff: chrome/browser/payments/payment_request_impl.h

Issue 2446093004: [Web Payments] Initial plumb of Payment Request dialog (Closed)
Patch Set: More responses Created 4 years, 1 month 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 unified diff | Download patch
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_PAYMENTS_PAYMENT_REQUEST_IMPL_H_
6 #define CHROME_BROWSER_PAYMENTS_PAYMENT_REQUEST_IMPL_H_
7
8 #include "components/payments/payment_request.mojom.h"
9 #include "mojo/public/cpp/bindings/binding.h"
10
11 namespace content {
12 class WebContents;
13 }
14
15 namespace payments {
16
17 class PaymentRequestDialog;
18
19 class PaymentRequestImpl : payments::mojom::PaymentRequest,
20 public base::RefCounted<PaymentRequestImpl> {
21 public:
22 PaymentRequestImpl(
23 content::WebContents* web_contents,
24 mojo::InterfaceRequest<payments::mojom::PaymentRequest> request);
25
26 // payments::mojom::PaymentRequest "stub"
27 void Init(payments::mojom::PaymentRequestClientPtr client,
28 std::vector<payments::mojom::PaymentMethodDataPtr> methodData,
29 payments::mojom::PaymentDetailsPtr details,
30 payments::mojom::PaymentOptionsPtr options) override;
31 void Show() override {}
32 void UpdateWith(payments::mojom::PaymentDetailsPtr details) override {}
33 void Abort() override {}
34 void Complete(payments::mojom::PaymentComplete result) override {}
35
36 void OnError();
37
38 private:
39 friend class base::RefCounted<PaymentRequestImpl>;
40 ~PaymentRequestImpl() override;
41
42 content::WebContents* web_contents_;
43 mojo::Binding<payments::mojom::PaymentRequest> binding_;
44 PaymentRequestDialog* dialog_;
45 DISALLOW_COPY_AND_ASSIGN(PaymentRequestImpl);
46 };
47
48 } // namespace payments
49
50 void CreatePaymentRequestHandler(
51 content::WebContents* web_contents,
52 mojo::InterfaceRequest<payments::mojom::PaymentRequest> request);
53
54 #endif // CHROME_BROWSER_PAYMENTS_PAYMENT_REQUEST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698