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

Unified Diff: components/payments/core/payment_instrument.cc

Issue 2805263003: [Payments] Selecting incomplete items will open editors (Closed)
Patch Set: fix ios test for realz 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: components/payments/core/payment_instrument.cc
diff --git a/components/payments/core/payment_instrument.cc b/components/payments/core/payment_instrument.cc
index 324c47a9372ab8760fc2c173ad8a67b1f4fae447..097917c842717e43f2f1fc23b6d2eddad57c6249 100644
--- a/components/payments/core/payment_instrument.cc
+++ b/components/payments/core/payment_instrument.cc
@@ -9,11 +9,13 @@ namespace payments {
PaymentInstrument::PaymentInstrument(const std::string& method_name,
const base::string16& label,
const base::string16& sublabel,
- int icon_resource_id)
+ int icon_resource_id,
+ Type type)
: method_name_(method_name),
label_(label),
sublabel_(sublabel),
- icon_resource_id_(icon_resource_id) {}
+ icon_resource_id_(icon_resource_id),
+ type_(type) {}
PaymentInstrument::~PaymentInstrument() {}
« no previous file with comments | « components/payments/core/payment_instrument.h ('k') | components/payments/core/payment_request_data_util_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698