Chromium Code Reviews| Index: content/public/browser/payment_app_provider.h |
| diff --git a/content/public/browser/payment_app_provider.h b/content/public/browser/payment_app_provider.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..22115eccd3ec42ce95266b4f3902947bc80f23b7 |
| --- /dev/null |
| +++ b/content/public/browser/payment_app_provider.h |
| @@ -0,0 +1,42 @@ |
| +// 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 CONTENT_PUBLIC_BROWSER_PAYMENT_APP_PROVIDER_H_ |
| +#define CONTENT_PUBLIC_BROWSER_PAYMENT_APP_PROVIDER_H_ |
| + |
| +#include <utility> |
| +#include <vector> |
| + |
| +#include "base/callback_forward.h" |
| +#include "content/common/content_export.h" |
| + |
| +namespace content { |
| + |
| +class BrowserContext; |
| + |
| +// This is providing the service worker based payment app related APIs to |
| +// Chrome layer. This class is a singleton, the instance of which can be |
| +// retrieved using the static GetInstance() method. |
| +// All methods must be called on the UI thread. |
| +class CONTENT_EXPORT PaymentAppProvider { |
| + public: |
| + static PaymentAppProvider* GetInstance(); |
|
please use gerrit instead
2017/01/04 16:55:43
Add a comment about where this is implemented.
zino
2017/01/04 17:29:59
Done.
|
| + |
| + // The ManifestWithID is a pair of the service worker registration id and |
| + // the payment app manifest data associated with it. |
| + using ManifestWithID = |
| + std::pair<int64_t, payments::mojom::PaymentAppManifestPtr>; |
| + using Manifests = std::vector<ManifestWithID>; |
| + using GetAllManifestsCallback = base::Callback<void(Manifests)>; |
| + |
| + virtual void GetAllManifests(BrowserContext* browser_context, |
| + const GetAllManifestsCallback& callback) = 0; |
| + |
| + protected: |
| + virtual ~PaymentAppProvider() {} |
| +}; |
| + |
| +} // namespace content |
| + |
| +#endif // CONTENT_PUBLIC_BROWSER_PAYMENT_APP_PROVIDER_H_ |