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

Side by Side Diff: chrome/test/data/android/payments/util.js

Issue 2352513002: PaymentRequest: Deprecate careOf attribute in PaymentAddress. (Closed)
Patch Set: PaymentRequest: Deprecate careOf attribute in PaymentAddress. 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright 2016 The Chromium Authors. All rights reserved. 2 * Copyright 2016 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 /** 7 /**
8 * Prints the message. 8 * Prints the message.
9 * @param {String} msg - The message to print. 9 * @param {String} msg - The message to print.
10 */ 10 */
(...skipping 12 matching lines...) Expand all
23 dict.country = addr.country; 23 dict.country = addr.country;
24 dict.region = addr.region; 24 dict.region = addr.region;
25 dict.city = addr.city; 25 dict.city = addr.city;
26 dict.dependentLocality = addr.dependentLocality; 26 dict.dependentLocality = addr.dependentLocality;
27 dict.addressLine = addr.addressLine; 27 dict.addressLine = addr.addressLine;
28 dict.postalCode = addr.postalCode; 28 dict.postalCode = addr.postalCode;
29 dict.sortingCode = addr.sortingCode; 29 dict.sortingCode = addr.sortingCode;
30 dict.languageCode = addr.languageCode; 30 dict.languageCode = addr.languageCode;
31 dict.organization = addr.organization; 31 dict.organization = addr.organization;
32 dict.recipient = addr.recipient; 32 dict.recipient = addr.recipient;
33 dict.careOf = addr.careOf;
34 dict.phone = addr.phone; 33 dict.phone = addr.phone;
35 } 34 }
36 return dict; 35 return dict;
37 } 36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698