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

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

Issue 2790013002: PaymentHandler: Implement set/get methods in PaymentInstruments (blink) (Closed)
Patch Set: blink 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_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 496e8eeaa9a85fc6ecb8be6aee4719770a1735ba..f75afe9bfcd2776233dc41ebf506403674469908 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();
« no previous file with comments | « components/payments/mojom/payment_app.mojom ('k') | content/browser/payments/payment_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698