| 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 CONTENT_PUBLIC_BROWSER_PAYMENT_APP_PROVIDER_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_PAYMENT_APP_PROVIDER_H_ |
| 6 #define CONTENT_PUBLIC_BROWSER_PAYMENT_APP_PROVIDER_H_ | 6 #define CONTENT_PUBLIC_BROWSER_PAYMENT_APP_PROVIDER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 8 #include <utility> | 9 #include <utility> |
| 9 #include <vector> | 10 #include <vector> |
| 10 | 11 |
| 11 #include "base/callback_forward.h" | 12 #include "base/callback_forward.h" |
| 13 #include "components/payments/content/payment_app.mojom.h" |
| 12 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
| 13 | 15 |
| 14 namespace content { | 16 namespace content { |
| 15 | 17 |
| 16 class BrowserContext; | 18 class BrowserContext; |
| 17 | 19 |
| 18 // This is providing the service worker based payment app related APIs to | 20 // This is providing the service worker based payment app related APIs to |
| 19 // Chrome layer. This class is a singleton, the instance of which can be | 21 // Chrome layer. This class is a singleton, the instance of which can be |
| 20 // retrieved using the static GetInstance() method. | 22 // retrieved using the static GetInstance() method. |
| 21 // All methods must be called on the UI thread. | 23 // All methods must be called on the UI thread. |
| 22 class CONTENT_EXPORT PaymentAppProvider { | 24 class CONTENT_EXPORT PaymentAppProvider { |
| 23 public: | 25 public: |
| 24 // This static function is actually implemented in PaymentAppProviderImpl.cc. | 26 // This static function is actually implemented in PaymentAppProviderImpl.cc. |
| 25 // Please see: content/browser/payments/payment_app_provider_impl.cc | 27 // Please see: content/browser/payments/payment_app_provider_impl.cc |
| 26 static PaymentAppProvider* GetInstance(); | 28 static PaymentAppProvider* GetInstance(); |
| 27 | 29 |
| 28 // The ManifestWithID is a pair of the service worker registration id and | 30 // The ManifestWithID is a pair of the service worker registration id and |
| 29 // the payment app manifest data associated with it. | 31 // the payment app manifest data associated with it. |
| 30 using ManifestWithID = | 32 using ManifestWithID = |
| 31 std::pair<int64_t, payments::mojom::PaymentAppManifestPtr>; | 33 std::pair<int64_t, payments::mojom::PaymentAppManifestPtr>; |
| 32 using Manifests = std::vector<ManifestWithID>; | 34 using Manifests = std::vector<ManifestWithID>; |
| 35 |
| 36 // TODO(zino): Consider to use base::OnceCallback instead of base::Callback. |
| 37 // Please see: http://crbug.com/704193 |
| 33 using GetAllManifestsCallback = base::Callback<void(Manifests)>; | 38 using GetAllManifestsCallback = base::Callback<void(Manifests)>; |
| 39 using InvokePaymentAppCallback = |
| 40 base::Callback<void(payments::mojom::PaymentAppResponsePtr)>; |
| 34 | 41 |
| 35 // Should be accessed only on the UI thread. | 42 // Should be accessed only on the UI thread. |
| 36 virtual void GetAllManifests(BrowserContext* browser_context, | 43 virtual void GetAllManifests(BrowserContext* browser_context, |
| 37 const GetAllManifestsCallback& callback) = 0; | 44 const GetAllManifestsCallback& callback) = 0; |
| 38 virtual void InvokePaymentApp( | 45 virtual void InvokePaymentApp( |
| 39 BrowserContext* browser_context, | 46 BrowserContext* browser_context, |
| 40 int64_t registration_id, | 47 int64_t registration_id, |
| 41 payments::mojom::PaymentAppRequestPtr app_request) = 0; | 48 payments::mojom::PaymentAppRequestPtr app_request, |
| 49 const InvokePaymentAppCallback& callback) = 0; |
| 42 | 50 |
| 43 protected: | 51 protected: |
| 44 virtual ~PaymentAppProvider() {} | 52 virtual ~PaymentAppProvider() {} |
| 45 }; | 53 }; |
| 46 | 54 |
| 47 } // namespace content | 55 } // namespace content |
| 48 | 56 |
| 49 #endif // CONTENT_PUBLIC_BROWSER_PAYMENT_APP_PROVIDER_H_ | 57 #endif // CONTENT_PUBLIC_BROWSER_PAYMENT_APP_PROVIDER_H_ |
| OLD | NEW |