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

Side by Side Diff: chrome/browser/sync/protocol/autofill_specifics.proto

Issue 7892048: Autofill: Remove fax number completely. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 22 matching lines...) Expand all
33 optional string company_name = 6; 33 optional string company_name = 6;
34 34
35 // Home address. 35 // Home address.
36 optional string address_home_line1 = 7; 36 optional string address_home_line1 = 7;
37 optional string address_home_line2 = 8; 37 optional string address_home_line2 = 8;
38 optional string address_home_city = 9; 38 optional string address_home_city = 9;
39 optional string address_home_state = 10; 39 optional string address_home_state = 10;
40 optional string address_home_zip = 11; 40 optional string address_home_zip = 11;
41 optional string address_home_country = 12; 41 optional string address_home_country = 12;
42 42
43 // Phone + fax. 43 // Phone.
44 optional string phone_home_whole_number = 13; 44 optional string phone_home_whole_number = 13;
45 optional string phone_fax_whole_number = 14;
Ilya Sherman 2011/09/15 03:47:08 I don't think you're allowed to remove fields from
James Hawkins 2011/09/16 03:23:28 I'll mark it deprecated and touch base with them a
46 } 45 }
47 46
48 message AutofillSpecifics { 47 message AutofillSpecifics {
49 // If any of these 3 fields are present, then all 3 should be, and it implies 48 // If any of these 3 fields are present, then all 3 should be, and it implies
50 // that this entity represents a classic autofill object. In this case, 49 // that this entity represents a classic autofill object. In this case,
51 // none of the autofill++ objects below should be present. 50 // none of the autofill++ objects below should be present.
52 optional string name = 1; 51 optional string name = 1;
53 optional string value = 2; 52 optional string value = 2;
54 repeated int64 usage_timestamp = 3; 53 repeated int64 usage_timestamp = 3;
55 54
56 // An autofill++ profile object. If present, indicates this entity 55 // An autofill++ profile object. If present, indicates this entity
57 // represents an AutofillProfile exclusively, and no other fields (such as 56 // represents an AutofillProfile exclusively, and no other fields (such as
58 // name/value or credit_card) should be present. 57 // name/value or credit_card) should be present.
59 optional AutofillProfileSpecifics profile = 4; 58 optional AutofillProfileSpecifics profile = 4;
60 59
61 // Obsolete credit card fields. 60 // Obsolete credit card fields.
62 // optional bytes deprecated_encrypted_credit_card = 5; 61 // optional bytes deprecated_encrypted_credit_card = 5;
63 // optional AutofillCreditCardSpecifics deprecated_credit_card = 6; 62 // optional AutofillCreditCardSpecifics deprecated_credit_card = 6;
64 } 63 }
65 64
66 extend EntitySpecifics { 65 extend EntitySpecifics {
67 optional AutofillSpecifics autofill = 31729; 66 optional AutofillSpecifics autofill = 31729;
68 optional AutofillProfileSpecifics autofill_profile = 63951; 67 optional AutofillProfileSpecifics autofill_profile = 63951;
69 } 68 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698