| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/payments/core/payment_request_data_util.h" | 5 #include "components/payments/core/payment_request_data_util.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 | 8 |
| 9 #include "base/json/json_writer.h" | 9 #include "base/json/json_writer.h" |
| 10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 "\"country\":\"US\"," | 61 "\"country\":\"US\"," |
| 62 "\"organization\":\"Underworld\"," | 62 "\"organization\":\"Underworld\"," |
| 63 "\"phone\":\"16502111111\"," | 63 "\"phone\":\"16502111111\"," |
| 64 "\"postalCode\":\"91111\"," | 64 "\"postalCode\":\"91111\"," |
| 65 "\"recipient\":\"John H. Doe\"," | 65 "\"recipient\":\"John H. Doe\"," |
| 66 "\"region\":\"CA\"}," | 66 "\"region\":\"CA\"}," |
| 67 "\"cardNumber\":\"4111111111111111\"," | 67 "\"cardNumber\":\"4111111111111111\"," |
| 68 "\"cardSecurityCode\":\"123\"," | 68 "\"cardSecurityCode\":\"123\"," |
| 69 "\"cardholderName\":\"Test User\"," | 69 "\"cardholderName\":\"Test User\"," |
| 70 "\"expiryMonth\":\"11\"," | 70 "\"expiryMonth\":\"11\"," |
| 71 "\"expiryYear\":\"2017\"}", | 71 "\"expiryYear\":\"2022\"}", |
| 72 json_response); | 72 json_response); |
| 73 } | 73 } |
| 74 | 74 |
| 75 } // namespace data_util | 75 } // namespace data_util |
| 76 } // namespace payments | 76 } // namespace payments |
| OLD | NEW |