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

Unified Diff: content/browser/payments/payment_app_database.h

Issue 2958333002: [Payments] Implement web payment app manifest (Closed)
Patch Set: rename and comments Created 3 years, 5 months 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/payments/payment_app_database.h
diff --git a/content/browser/payments/payment_app_database.h b/content/browser/payments/payment_app_database.h
index 69312266fceb16a340a194de076a7078d2cdbec8..1b88e809b9cec8e38c8933fab3c30a450c613be8 100644
--- a/content/browser/payments/payment_app_database.h
+++ b/content/browser/payments/payment_app_database.h
@@ -11,12 +11,13 @@
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
+#include "content/browser/payments/payment_app_info_fetcher.h"
#include "content/browser/payments/payment_instrument_icon_fetcher.h"
#include "content/browser/service_worker/service_worker_context_wrapper.h"
#include "content/browser/service_worker/service_worker_registration.h"
#include "content/common/content_export.h"
#include "content/common/service_worker/service_worker_status_code.h"
-#include "content/public/browser/stored_payment_instrument.h"
+#include "content/public/browser/stored_payment_app.h"
#include "mojo/public/cpp/bindings/binding.h"
#include "third_party/WebKit/public/platform/modules/payments/payment_app.mojom.h"
@@ -26,8 +27,7 @@ class ServiceWorkerRegistration;
class CONTENT_EXPORT PaymentAppDatabase {
public:
- using Instruments = std::vector<std::unique_ptr<StoredPaymentInstrument>>;
- using PaymentApps = std::map<GURL, Instruments>;
+ using PaymentApps = std::map<GURL, std::unique_ptr<StoredPaymentApp>>;
using ReadAllPaymentAppsCallback = base::OnceCallback<void(PaymentApps)>;
using DeletePaymentInstrumentCallback =
@@ -42,6 +42,8 @@ class CONTENT_EXPORT PaymentAppDatabase {
base::OnceCallback<void(payments::mojom::PaymentHandlerStatus)>;
using WritePaymentInstrumentCallback =
base::OnceCallback<void(payments::mojom::PaymentHandlerStatus)>;
+ using FetchAndWritePaymentAppInfoCallback =
+ base::OnceCallback<void(payments::mojom::PaymentHandlerStatus)>;
using ClearPaymentInstrumentsCallback =
base::OnceCallback<void(payments::mojom::PaymentHandlerStatus)>;
@@ -66,6 +68,10 @@ class CONTENT_EXPORT PaymentAppDatabase {
const std::string& instrument_key,
payments::mojom::PaymentInstrumentPtr instrument,
WritePaymentInstrumentCallback callback);
+ void FetchAndWritePaymentAppInfo(
+ const GURL& context,
+ const GURL& scope,
+ FetchAndWritePaymentAppInfoCallback callback);
void ClearPaymentInstruments(const GURL& scope,
ClearPaymentInstrumentsCallback callback);
@@ -75,6 +81,11 @@ class CONTENT_EXPORT PaymentAppDatabase {
ReadAllPaymentAppsCallback callback,
const std::vector<std::pair<int64_t, std::string>>& raw_data,
ServiceWorkerStatusCode status);
+ void DidReadAllPaymentInstruments(
+ PaymentApps apps,
+ ReadAllPaymentAppsCallback callback,
+ const std::vector<std::pair<int64_t, std::string>>& raw_data,
+ ServiceWorkerStatusCode status);
// DeletePaymentInstrument callbacks
void DidFindRegistrationToDeletePaymentInstrument(
@@ -130,6 +141,21 @@ class CONTENT_EXPORT PaymentAppDatabase {
void DidWritePaymentInstrument(WritePaymentInstrumentCallback callback,
ServiceWorkerStatusCode status);
+ // FetchAndWritePaymentAppInfo callbacks.
+ void FetchPaymentAppInfoCallback(const GURL& scope,
+ FetchAndWritePaymentAppInfoCallback callback,
+ const std::string& name,
+ const std::string& icon);
+ void DidFindRegistrationToWritePaymentAppInfo(
+ FetchAndWritePaymentAppInfoCallback callback,
+ const std::string& name,
+ const std::string& icon,
+ ServiceWorkerStatusCode status,
+ scoped_refptr<ServiceWorkerRegistration> registration);
+ void DidWritePaymentApp(FetchAndWritePaymentAppInfoCallback callback,
+ bool fetch_app_info_failed,
+ ServiceWorkerStatusCode status);
+
// PaymentInstrumentIconFetcherCallback.
void DidFetchedPaymentInstrumentIcon(
const GURL& scope,
@@ -145,13 +171,14 @@ class CONTENT_EXPORT PaymentAppDatabase {
ServiceWorkerStatusCode status,
scoped_refptr<ServiceWorkerRegistration> registration);
void DidGetKeysToClearPaymentInstruments(
- int64_t registration_id,
+ scoped_refptr<ServiceWorkerRegistration> registration,
ClearPaymentInstrumentsCallback callback,
const std::vector<std::string>& keys,
payments::mojom::PaymentHandlerStatus status);
void DidClearPaymentInstruments(ClearPaymentInstrumentsCallback callback,
ServiceWorkerStatusCode status);
+ scoped_refptr<PaymentAppInfoFetcher> payment_app_info_fetcher_;
scoped_refptr<PaymentInstrumentIconFetcher> instrument_icon_fetcher_;
scoped_refptr<ServiceWorkerContextWrapper> service_worker_context_;
base::WeakPtrFactory<PaymentAppDatabase> weak_ptr_factory_;
« no previous file with comments | « content/browser/payments/payment_app_content_unittest_base.cc ('k') | content/browser/payments/payment_app_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698