| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Sync protocol datatype extension for autofill. | 5 // Sync protocol datatype extension for autofill. |
| 6 | 6 |
| 7 // Update proto_value_conversions{.h,.cc,_unittest.cc} if you change | 7 // Update proto_value_conversions{.h,.cc,_unittest.cc} if you change |
| 8 // any fields in this file. | 8 // any fields in this file. |
| 9 | 9 |
| 10 syntax = "proto2"; | 10 syntax = "proto2"; |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 // - Phone number | 202 // - Phone number |
| 203 // - Language code | 203 // - Language code |
| 204 optional string id = 2; | 204 optional string id = 2; |
| 205 | 205 |
| 206 // The number of times that this Wallet card or address was used. | 206 // The number of times that this Wallet card or address was used. |
| 207 optional int64 use_count = 3; | 207 optional int64 use_count = 3; |
| 208 | 208 |
| 209 // The last use date of this Wallet card or address. Measured in microseconds | 209 // The last use date of this Wallet card or address. Measured in microseconds |
| 210 // since the Windows epoch (1601). | 210 // since the Windows epoch (1601). |
| 211 optional int64 use_date = 4; | 211 optional int64 use_date = 4; |
| 212 |
| 213 // The id of the profile/address that represents the billing address of this |
| 214 // Wallet card. |
| 215 optional string card_billing_address_id = 5; |
| 216 |
| 217 // Whether this Wallet address has been converted to a local autofill profile. |
| 218 optional bool address_has_converted = 6; |
| 212 } | 219 } |
| OLD | NEW |