| 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"; |
| 11 | 11 |
| 12 option optimize_for = LITE_RUNTIME; | 12 option optimize_for = LITE_RUNTIME; |
| 13 option retain_unknown_fields = true; | |
| 14 | 13 |
| 15 package sync_pb; | 14 package sync_pb; |
| 16 | 15 |
| 17 // Properties of autofill sync objects. | 16 // Properties of autofill sync objects. |
| 18 | 17 |
| 19 // An AutofillProfile. | 18 // An AutofillProfile. |
| 20 message AutofillProfileSpecifics { | 19 message AutofillProfileSpecifics { |
| 21 optional string guid = 15; | 20 optional string guid = 15; |
| 22 optional string origin = 16; | 21 optional string origin = 16; |
| 23 optional int64 use_count = 22; | 22 optional int64 use_count = 22; |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 // - Language code | 203 // - Language code |
| 205 optional string id = 2; | 204 optional string id = 2; |
| 206 | 205 |
| 207 // 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. |
| 208 optional int64 use_count = 3; | 207 optional int64 use_count = 3; |
| 209 | 208 |
| 210 // 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 |
| 211 // since the Windows epoch (1601). | 210 // since the Windows epoch (1601). |
| 212 optional int64 use_date = 4; | 211 optional int64 use_date = 4; |
| 213 } | 212 } |
| OLD | NEW |