diff options
author | zork@chromium.org <zork@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-10 20:05:12 +0000 |
---|---|---|
committer | zork@chromium.org <zork@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-10 20:05:12 +0000 |
commit | 7a5b2d8af981cb861f0b555f2b15895165a02369 (patch) | |
tree | a1a7a112cbdfab7f61c77c1e00fd626219cb15ab /chrome/browser | |
parent | 584d07127c8412b41215860f96d5399b53a5c2a8 (diff) | |
download | chromium_src-7a5b2d8af981cb861f0b555f2b15895165a02369.zip chromium_src-7a5b2d8af981cb861f0b555f2b15895165a02369.tar.gz chromium_src-7a5b2d8af981cb861f0b555f2b15895165a02369.tar.bz2 |
Update the .proto files to change the fields to optional.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/598035
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@38654 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser')
-rw-r--r-- | chrome/browser/sync/protocol/autofill_specifics.proto | 4 | ||||
-rw-r--r-- | chrome/browser/sync/protocol/preference_specifics.proto | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/sync/protocol/autofill_specifics.proto b/chrome/browser/sync/protocol/autofill_specifics.proto index a96ea8e..aeefb8c 100644 --- a/chrome/browser/sync/protocol/autofill_specifics.proto +++ b/chrome/browser/sync/protocol/autofill_specifics.proto @@ -14,8 +14,8 @@ import "sync.proto"; // Properties of autofill sync objects. message AutofillSpecifics { - required string name = 1; - required string value = 2; + optional string autofill_name = 1; + optional string value = 2; repeated int64 usage_timestamp = 3; } diff --git a/chrome/browser/sync/protocol/preference_specifics.proto b/chrome/browser/sync/protocol/preference_specifics.proto index 9caad94..de72a46 100644 --- a/chrome/browser/sync/protocol/preference_specifics.proto +++ b/chrome/browser/sync/protocol/preference_specifics.proto @@ -14,8 +14,8 @@ import "sync.proto"; // Properties of preference sync objects. message PreferenceSpecifics { - required string name = 1; - required string value = 2; + optional string preference_name = 1; + optional string value = 2; } extend EntitySpecifics { |