Commit 7de6023f authored by Victor Hugo Vianna Silva's avatar Victor Hugo Vianna Silva Committed by Commit Bot

Add missing [deprecate = true] to sync proto files

Bug: None
Change-Id: I044730d17ee2f23338c6ca8859c96a9cc7d92b6e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2312701
Commit-Queue: Victor Vianna <victorvianna@google.com>
Reviewed-by: default avatarMarc Treib <treib@chromium.org>
Cr-Commit-Position: refs/heads/master@{#791194}
parent 5714681a
...@@ -25,7 +25,7 @@ message AppNotificationSettings { ...@@ -25,7 +25,7 @@ message AppNotificationSettings {
// The value for this field will start out false and will be set // The value for this field will start out false and will be set
// to true when the user accepts receiving notifications for the // to true when the user accepts receiving notifications for the
// first time and then it will always remain true. // first time and then it will always remain true.
optional bool initial_setup_done = 1; optional bool initial_setup_done = 1 [deprecated = true];
// Whether or not the user has disabled notifications. // Whether or not the user has disabled notifications.
optional bool disabled = 2; optional bool disabled = 2;
......
...@@ -115,5 +115,5 @@ message GaiaPasswordReuse { ...@@ -115,5 +115,5 @@ message GaiaPasswordReuse {
} }
optional EventTrigger event_trigger = 1; optional EventTrigger event_trigger = 1;
} }
optional PasswordCaptured password_captured = 4; optional PasswordCaptured password_captured = 4 [deprecated = true];
} }
...@@ -80,11 +80,11 @@ message PasswordSpecificsData { ...@@ -80,11 +80,11 @@ message PasswordSpecificsData {
// Deprecated: http://crbug.com/413020 // Deprecated: http://crbug.com/413020
// True if the credential was saved for a HTTPS session with a valid SSL cert. // True if the credential was saved for a HTTPS session with a valid SSL cert.
// Ignored for Android apps. // Ignored for Android apps.
optional bool ssl_valid = 9; optional bool ssl_valid = 9 [deprecated = true];
// True for the last credential used for logging in on a given site. // True for the last credential used for logging in on a given site.
// Deprecated in M81. // Deprecated in M81.
optional bool preferred = 10; optional bool preferred = 10 [deprecated = true];
// Time when the credential was created. Amount of microseconds since 1601. // Time when the credential was created. Amount of microseconds since 1601.
optional int64 date_created = 11; optional int64 date_created = 11;
......
...@@ -49,7 +49,7 @@ message SearchEngineSpecifics { ...@@ -49,7 +49,7 @@ message SearchEngineSpecifics {
// DEPRECATED: Whether to autogenerate a keyword for the search engine or not. // DEPRECATED: Whether to autogenerate a keyword for the search engine or not.
// Do not write to this field in the future. We preserve this for now so we // Do not write to this field in the future. We preserve this for now so we
// can read the field in order to migrate existing data that sets this bit. // can read the field in order to migrate existing data that sets this bit.
optional bool autogenerate_keyword = 12; optional bool autogenerate_keyword = 12 [deprecated = true];
// ID 13 reserved - previously used by |logo_id|, now deprecated. // ID 13 reserved - previously used by |logo_id|, now deprecated.
// Obsolete field. This used to represent whether or not this search engine // Obsolete field. This used to represent whether or not this search engine
// entry was created automatically by an administrator via group policy. This // entry was created automatically by an administrator via group policy. This
......
...@@ -53,7 +53,7 @@ message UniquePosition { ...@@ -53,7 +53,7 @@ message UniquePosition {
// The uncompressed string of bytes representing the position. // The uncompressed string of bytes representing the position.
// //
// Deprecated. See history note above. // Deprecated. See history note above.
optional bytes value = 1; optional bytes value = 1 [deprecated = true];
// The client may choose to write a compressed position to this field instead // The client may choose to write a compressed position to this field instead
// of populating the 'value' above. If it chooses to use compression, the // of populating the 'value' above. If it chooses to use compression, the
...@@ -63,8 +63,8 @@ message UniquePosition { ...@@ -63,8 +63,8 @@ message UniquePosition {
// uncompressed_length field. // uncompressed_length field.
// //
// Deprecated. See history note above. // Deprecated. See history note above.
optional bytes compressed_value = 2; optional bytes compressed_value = 2 [deprecated = true];
optional uint64 uncompressed_length = 3; optional uint64 uncompressed_length = 3 [deprecated = true];
// This encoding uses compression scheme designed especially for unique // This encoding uses compression scheme designed especially for unique
// positions. It has the property that X < Y precisely when Compressed(X) < // positions. It has the property that X < Y precisely when Compressed(X) <
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment