1 // Copyright 2018 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "components/sync/engine/sync_engine_switches.h"
6 
7 namespace switches {
8 
9 const base::Feature kSyncResetPollIntervalOnStart{
10     "SyncResetPollIntervalOnStart", base::FEATURE_DISABLED_BY_DEFAULT};
11 
12 // Whether encryption keys should be derived using scrypt when a new custom
13 // passphrase is set. If disabled, the old PBKDF2 key derivation method will be
14 // used instead. Note that disabling this feature does not disable deriving keys
15 // via scrypt when we receive a remote Nigori node that specifies it as the key
16 // derivation method.
17 const base::Feature kSyncUseScryptForNewCustomPassphrases{
18     "SyncUseScryptForNewCustomPassphrases", base::FEATURE_ENABLED_BY_DEFAULT};
19 
20 const base::Feature kSyncSupportTrustedVaultPassphrase{
21     "SyncSupportTrustedVaultPassphrase", base::FEATURE_ENABLED_BY_DEFAULT};
22 
23 const base::Feature kSyncTriggerFullKeystoreMigration{
24     "SyncTriggerFullKeystoreMigration", base::FEATURE_DISABLED_BY_DEFAULT};
25 
26 }  // namespace switches
27