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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/payments/AutofillPaymentInstrument.java

Issue 2352513002: PaymentRequest: Deprecate careOf attribute in PaymentAddress. (Closed)
Patch Set: PaymentRequest: Deprecate careOf attribute in PaymentAddress. Created 4 years, 3 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: chrome/android/java/src/org/chromium/chrome/browser/payments/AutofillPaymentInstrument.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/payments/AutofillPaymentInstrument.java b/chrome/android/java/src/org/chromium/chrome/browser/payments/AutofillPaymentInstrument.java
index 7eadfb297190f4f60ab27f16d16d2b45343c95c0..d4fb1f32ac4dee5f125b3b6d06d16cdb8dd5f9cf 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/payments/AutofillPaymentInstrument.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/payments/AutofillPaymentInstrument.java
@@ -100,7 +100,6 @@ public class AutofillPaymentInstrument
json.name("languageCode").value(ensureNotNull(mBillingAddress.getLanguageCode()));
json.name("organization").value(ensureNotNull(mBillingAddress.getCompanyName()));
json.name("recipient").value(ensureNotNull(mBillingAddress.getFullName()));
- json.name("careOf").value("");
json.name("phone").value(ensureNotNull(mBillingAddress.getPhoneNumber()));
json.endObject();

Powered by Google App Engine
This is Rietveld 408576698