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 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 <utility> | 8 #include <utility> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 21 // All methods must be called on the UI thread. | 21 // All methods must be called on the UI thread. |
| 22 class CONTENT_EXPORT PaymentAppProvider { | 22 class CONTENT_EXPORT PaymentAppProvider { |
| 23 public: | 23 public: |
| 24 // This static function is actually implemented in PaymentAppProviderImpl.cc. | 24 // This static function is actually implemented in PaymentAppProviderImpl.cc. |
| 25 // Please see: content/browser/payments/payment_app_provider_impl.cc | 25 // Please see: content/browser/payments/payment_app_provider_impl.cc |
| 26 static PaymentAppProvider* GetInstance(); | 26 static PaymentAppProvider* GetInstance(); |
| 27 | 27 |
| 28 // The ManifestWithID is a pair of the service worker registration id and | 28 // The ManifestWithID is a pair of the service worker registration id and |
| 29 // the payment app manifest data associated with it. | 29 // the payment app manifest data associated with it. |
| 30 using ManifestWithID = | 30 using ManifestWithID = |
| 31 std::pair<int64_t, payments::mojom::PaymentAppManifestPtr>; | 31 std::pair<int64_t, payments::mojom::PaymentAppManifestPtr>; |
|
please use gerrit instead
2017/03/21 16:09:41
#include "components/payments/content/payment_app.
zino
2017/03/22 18:04:44
Done.
| |
| 32 using Manifests = std::vector<ManifestWithID>; | 32 using Manifests = std::vector<ManifestWithID>; |
| 33 using GetAllManifestsCallback = base::Callback<void(Manifests)>; | 33 using GetAllManifestsCallback = base::Callback<void(Manifests)>; |
|
please use gerrit instead
2017/03/21 16:09:41
Is it possible to use the move-only base::OnceCall
| |
| 34 using InvokePaymentAppCallback = | |
| 35 base::Callback<void(payments::mojom::PaymentAppResponsePtr)>; | |
|
please use gerrit instead
2017/03/21 16:09:41
Is base::OnceCallback usable here?
| |
| 34 | 36 |
| 35 // Should be accessed only on the UI thread. | 37 // Should be accessed only on the UI thread. |
| 36 virtual void GetAllManifests(BrowserContext* browser_context, | 38 virtual void GetAllManifests(BrowserContext* browser_context, |
| 37 const GetAllManifestsCallback& callback) = 0; | 39 const GetAllManifestsCallback& callback) = 0; |
|
please use gerrit instead
2017/03/21 16:09:41
If you use base::OnceCallback to define GetAllMani
| |
| 38 virtual void InvokePaymentApp( | 40 virtual void InvokePaymentApp( |
| 39 BrowserContext* browser_context, | 41 BrowserContext* browser_context, |
| 40 int64_t registration_id, | 42 int64_t registration_id, |
|
please use gerrit instead
2017/03/21 16:09:41
#include <stdint.h>
zino
2017/03/22 18:04:44
Done.
| |
| 41 payments::mojom::PaymentAppRequestPtr app_request) = 0; | 43 payments::mojom::PaymentAppRequestPtr app_request, |
| 44 const InvokePaymentAppCallback& callback) = 0; | |
|
please use gerrit instead
2017/03/21 16:09:41
If you use base::OnceCallback, then there's no nee
| |
| 42 | 45 |
| 43 protected: | 46 protected: |
| 44 virtual ~PaymentAppProvider() {} | 47 virtual ~PaymentAppProvider() {} |
| 45 }; | 48 }; |
| 46 | 49 |
| 47 } // namespace content | 50 } // namespace content |
| 48 | 51 |
| 49 #endif // CONTENT_PUBLIC_BROWSER_PAYMENT_APP_PROVIDER_H_ | 52 #endif // CONTENT_PUBLIC_BROWSER_PAYMENT_APP_PROVIDER_H_ |
| OLD | NEW |