diff options
author | albertb@chromium.org <albertb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-22 22:56:04 +0000 |
---|---|---|
committer | albertb@chromium.org <albertb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-22 22:56:04 +0000 |
commit | 611728e29592c9688fb6cea9bfb4b62e521c712f (patch) | |
tree | 5db67040b77e870f7ddade390cd3480e13c26aae /sync | |
parent | d67375ca093e8d82084daa1d6cf22067edbd09d2 (diff) | |
download | chromium_src-611728e29592c9688fb6cea9bfb4b62e521c712f.zip chromium_src-611728e29592c9688fb6cea9bfb4b62e521c712f.tar.gz chromium_src-611728e29592c9688fb6cea9bfb4b62e521c712f.tar.bz2 |
Add experiment for history delete directives.
R=zea
BUG=none
Review URL: https://chromiumcodereview.appspot.com/11237006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163425 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync')
-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; } |