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

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

Issue 2790013002: PaymentHandler: Implement set/get methods in PaymentInstruments (blink) (Closed)
Patch Set: ss 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
Index: content/browser/payments/payment_manager.h
diff --git a/content/browser/payments/payment_manager.h b/content/browser/payments/payment_manager.h
index 6872ad2ac79b97c7982672f3fd772549ad73ac4b..b8ad3aa5c5bc611a0fdfec834cff9b610a78c3e2 100644
--- a/content/browser/payments/payment_manager.h
+++ b/content/browser/payments/payment_manager.h
@@ -35,6 +35,13 @@ class CONTENT_EXPORT PaymentManager
void SetManifest(payments::mojom::PaymentAppManifestPtr manifest,
const SetManifestCallback& callback) override;
void GetManifest(const GetManifestCallback& callback) override;
+ void SetPaymentInstrument(
+ const std::string& instrumentKey,
+ payments::mojom::PaymentInstrumentPtr details,
+ const SetPaymentInstrumentCallback& callback) override;
+ void GetPaymentInstrument(
+ const std::string& instrumentKey,
+ const GetPaymentInstrumentCallback& callback) override;
// Called when an error is detected on binding_.
void OnConnectionError();

Powered by Google App Engine
This is Rietveld 408576698