diff options
-rw-r--r-- | sync/protocol/experiments_specifics.proto | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sync/protocol/experiments_specifics.proto b/sync/protocol/experiments_specifics.proto index 6d03a7b..adb40a9 100644 --- a/sync/protocol/experiments_specifics.proto +++ b/sync/protocol/experiments_specifics.proto @@ -16,9 +16,15 @@ message KeystoreEncryptionFlags { optional bool enabled = 1; } +// Whether history delete directives are enabled. +message HistoryDeleteDirectives { + optional bool enabled = 1; +} + // Contains one flag or set of related flags. Each node of the experiments type // will have a unique_client_tag identifying which flags it contains. By // convention, the tag name should match the sub-message name. message ExperimentsSpecifics { optional KeystoreEncryptionFlags keystore_encryption = 1; + optional HistoryDeleteDirectives history_delete_directives = 2; } |