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

Unified Diff: content/browser/payments/payment_manager.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 | « content/browser/payments/payment_app_database.cc ('k') | content/browser/payments/payment_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/payments/payment_manager.h
diff --git a/content/browser/payments/payment_manager.h b/content/browser/payments/payment_manager.h
index 772b25d799012989fd4158d833782078c9c974a6..4a115e25829dba0037356a37757a7c1848a77533 100644
--- a/content/browser/payments/payment_manager.h
+++ b/content/browser/payments/payment_manager.h
@@ -36,12 +36,15 @@ class CONTENT_EXPORT PaymentManager
void SetManifest(payments::mojom::PaymentAppManifestPtr manifest,
const SetManifestCallback& callback) override;
void GetManifest(const GetManifestCallback& callback) override;
+ void DeletePaymentInstrument(
+ const std::string& instrument_key,
+ const DeletePaymentInstrumentCallback& callback) override;
void SetPaymentInstrument(
- const std::string& instrumentKey,
+ const std::string& instrument_key,
payments::mojom::PaymentInstrumentPtr details,
const SetPaymentInstrumentCallback& callback) override;
void GetPaymentInstrument(
- const std::string& instrumentKey,
+ const std::string& instrument_key,
const GetPaymentInstrumentCallback& callback) override;
// Called when an error is detected on binding_.
« no previous file with comments | « content/browser/payments/payment_app_database.cc ('k') | content/browser/payments/payment_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698