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

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

Issue 2844463002: PaymentHandler: Implement PaymentInstruments.delete(). (Closed)
Patch Set: PaymentHandler: Implement PaymentInstruments.delete(). Created 3 years, 8 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
« no previous file with comments | « components/payments/mojom/payment_app.mojom ('k') | content/browser/payments/payment_app_database.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 bac4c9ca8f9eb4b16936c3599a36d540f17e64c2..7c810522d2d320236ffa3ad850ccc277c18cdc0c 100644
--- a/content/browser/payments/payment_app_database.h
+++ b/content/browser/payments/payment_app_database.h
@@ -32,6 +32,8 @@ class CONTENT_EXPORT PaymentAppDatabase {
std::pair<int64_t, payments::mojom::PaymentAppManifestPtr>;
using Manifests = std::vector<ManifestWithID>;
using ReadAllManifestsCallback = base::Callback<void(Manifests)>;
+ using DeletePaymentInstrumentCallback =
+ base::OnceCallback<void(payments::mojom::PaymentHandlerStatus)>;
using ReadPaymentInstrumentCallback =
base::OnceCallback<void(payments::mojom::PaymentInstrumentPtr,
payments::mojom::PaymentHandlerStatus)>;
@@ -47,11 +49,14 @@ class CONTENT_EXPORT PaymentAppDatabase {
const WriteManifestCallback& callback);
void ReadManifest(const GURL& scope, const ReadManifestCallback& callback);
void ReadAllManifests(const ReadAllManifestsCallback& callback);
+ void DeletePaymentInstrument(const GURL& scope,
+ const std::string& instrument_key,
+ DeletePaymentInstrumentCallback callback);
void ReadPaymentInstrument(const GURL& scope,
- const std::string& instrumentKey,
+ const std::string& instrument_key,
ReadPaymentInstrumentCallback callback);
void WritePaymentInstrument(const GURL& scope,
- const std::string& instrumentKey,
+ const std::string& instrument_key,
payments::mojom::PaymentInstrumentPtr instrument,
WritePaymentInstrumentCallback callback);
@@ -80,9 +85,23 @@ class CONTENT_EXPORT PaymentAppDatabase {
const std::vector<std::pair<int64_t, std::string>>& raw_data,
ServiceWorkerStatusCode status);
+ // DeletePaymentInstrument callbacks
+ void DidFindRegistrationToDeletePaymentInstrument(
+ const std::string& instrument_key,
+ DeletePaymentInstrumentCallback callback,
+ ServiceWorkerStatusCode status,
+ scoped_refptr<ServiceWorkerRegistration> registration);
+ void DidFindPaymentInstrument(int64_t registration_id,
+ const std::string& instrument_key,
+ DeletePaymentInstrumentCallback callback,
+ const std::vector<std::string>& data,
+ ServiceWorkerStatusCode status);
+ void DidDeletePaymentInstrument(DeletePaymentInstrumentCallback callback,
+ ServiceWorkerStatusCode status);
+
// ReadPaymentInstrument callbacks
void DidFindRegistrationToReadPaymentInstrument(
- const std::string& instrumentKey,
+ const std::string& instrument_key,
ReadPaymentInstrumentCallback callback,
ServiceWorkerStatusCode status,
scoped_refptr<ServiceWorkerRegistration> registration);
@@ -92,7 +111,7 @@ class CONTENT_EXPORT PaymentAppDatabase {
// WritePaymentInstrument callbacks
void DidFindRegistrationToWritePaymentInstrument(
- const std::string& instrumentKey,
+ const std::string& instrument_key,
payments::mojom::PaymentInstrumentPtr instrument,
WritePaymentInstrumentCallback callback,
ServiceWorkerStatusCode status,
« no previous file with comments | « components/payments/mojom/payment_app.mojom ('k') | content/browser/payments/payment_app_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698