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

Unified Diff: chrome/test/data/android/payments/contact_details_and_free_shipping.js

Issue 2368073002: PaymentRequest: Add payer name field to payer info editor. (android) (Closed)
Patch Set: PaymentRequest: Add payer name field to payer info editor. (android) Created 4 years, 2 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 | « chrome/test/data/android/payments/contact_details.js ('k') | chrome/test/data/android/payments/name.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/android/payments/contact_details_and_free_shipping.js
diff --git a/chrome/test/data/android/payments/contact_details_and_free_shipping.js b/chrome/test/data/android/payments/contact_details_and_free_shipping.js
index c5fc1bee96f69b26e599a4fc472f878196dbb366..ea336fc5e457bbf221edcba393b3af79a98d629f 100644
--- a/chrome/test/data/android/payments/contact_details_and_free_shipping.js
+++ b/chrome/test/data/android/payments/contact_details_and_free_shipping.js
@@ -23,15 +23,15 @@ function buy() { // eslint-disable-line no-unused-vars
selected: true
}]
},
- {requestPayerEmail: true, requestPayerPhone: true,
- requestShipping: true});
+ {requestPayerName: true, requestPayerEmail: true,
+ requestPayerPhone: true, requestShipping: true});
request.show()
.then(function(resp) {
resp.complete('success')
.then(function() {
print(
- resp.payerEmail + '<br>' + resp.payerPhone + '<br>' +
- resp.shippingOption + '<br>' +
+ resp.payerName + '<br>' + resp.payerEmail + '<br>' +
+ resp.payerPhone + '<br>' + resp.shippingOption + '<br>' +
JSON.stringify(
toDictionary(resp.shippingAddress), undefined, 2) +
'<br>' + resp.methodName + '<br>' +
« no previous file with comments | « chrome/test/data/android/payments/contact_details.js ('k') | chrome/test/data/android/payments/name.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698