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

Side by Side Diff: components/sync/protocol/autofill_specifics.proto

Issue 2514753002: Add Mir credit card support to autofill. (Closed)
Patch Set: Created 4 years, 1 month 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 // 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 enum WalletCardType { 83 enum WalletCardType {
84 UNKNOWN = 0; 84 UNKNOWN = 0;
85 AMEX = 1; 85 AMEX = 1;
86 DISCOVER = 2; 86 DISCOVER = 2;
87 JCB = 3; 87 JCB = 3;
88 MAESTRO = 4; 88 MAESTRO = 4;
89 MASTER_CARD = 5; 89 MASTER_CARD = 5;
90 SOLO = 6; 90 SOLO = 6;
91 SWITCH = 7; 91 SWITCH = 7;
92 VISA = 8; 92 VISA = 8;
93 MIR = 9;
please use gerrit instead 2016/11/18 10:34:21 No need to modify anything sync server related.
93 } 94 }
94 95
95 // Server-generated unique ID string. This is opaque to the client. 96 // Server-generated unique ID string. This is opaque to the client.
96 optional string id = 1; 97 optional string id = 1;
97 98
98 // What the server thinks of this card. 99 // What the server thinks of this card.
99 optional WalletCardStatus status = 2; 100 optional WalletCardStatus status = 2;
100 101
101 optional string name_on_card = 3; 102 optional string name_on_card = 3;
102 103
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 // - Language code 204 // - Language code
204 optional string id = 2; 205 optional string id = 2;
205 206
206 // The number of times that this Wallet card or address was used. 207 // The number of times that this Wallet card or address was used.
207 optional int64 use_count = 3; 208 optional int64 use_count = 3;
208 209
209 // The last use date of this Wallet card or address. Measured in microseconds 210 // The last use date of this Wallet card or address. Measured in microseconds
210 // since the Windows epoch (1601). 211 // since the Windows epoch (1601).
211 optional int64 use_date = 4; 212 optional int64 use_date = 4;
212 } 213 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698