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

Unified Diff: third_party/WebKit/Source/modules/payments/PaymentManager.cpp

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 | « third_party/WebKit/Source/modules/payments/PaymentManager.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/payments/PaymentManager.cpp
diff --git a/third_party/WebKit/Source/modules/payments/PaymentManager.cpp b/third_party/WebKit/Source/modules/payments/PaymentManager.cpp
index 87e75cb7d750e1ae027e67ed384dbc34beda9562..e26a11d5364e2ab92d16378f8de3d9de2cc11d43 100644
--- a/third_party/WebKit/Source/modules/payments/PaymentManager.cpp
+++ b/third_party/WebKit/Source/modules/payments/PaymentManager.cpp
@@ -131,7 +131,7 @@ ScriptPromise PaymentManager::getManifest(ScriptState* script_state) {
PaymentInstruments* PaymentManager::instruments() {
if (!instruments_)
- instruments_ = new PaymentInstruments();
+ instruments_ = new PaymentInstruments(manager_);
return instruments_;
}
« no previous file with comments | « third_party/WebKit/Source/modules/payments/PaymentManager.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698