| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/sync/driver/sync_driver_switches.h" | 5 #include "components/sync/driver/sync_driver_switches.h" |
| 6 | 6 |
| 7 namespace switches { | 7 namespace switches { |
| 8 | 8 |
| 9 // Allows overriding the deferred init fallback timeout. | 9 // Allows overriding the deferred init fallback timeout. |
| 10 const char kSyncDeferredStartupTimeoutSeconds[] = | 10 const char kSyncDeferredStartupTimeoutSeconds[] = |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 // This flag causes sync to retry very quickly (see polling_constants.h) the | 23 // This flag causes sync to retry very quickly (see polling_constants.h) the |
| 24 // when it encounters an error, as the first step towards exponential backoff. | 24 // when it encounters an error, as the first step towards exponential backoff. |
| 25 const char kSyncShortInitialRetryOverride[] = | 25 const char kSyncShortInitialRetryOverride[] = |
| 26 "sync-short-initial-retry-override"; | 26 "sync-short-initial-retry-override"; |
| 27 | 27 |
| 28 // Enables clearing of sync data when a user enables passphrase encryption. | 28 // Enables clearing of sync data when a user enables passphrase encryption. |
| 29 const base::Feature kSyncClearDataOnPassphraseEncryption{ | 29 const base::Feature kSyncClearDataOnPassphraseEncryption{ |
| 30 "ClearSyncDataOnPassphraseEncryption", base::FEATURE_DISABLED_BY_DEFAULT}; | 30 "ClearSyncDataOnPassphraseEncryption", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 31 | 31 |
| 32 // Enables USS implementation of DeviceInfo datatype. This flag controls whether | 32 // Enables USS implementation of DeviceInfo datatype. This flag controls whether |
| 33 // SyncableService based or ModelTypeService based implementation is used for | 33 // SyncableService based or ModelTypeSyncBridge based implementation is used for |
| 34 // DeviceInfo type. | 34 // DeviceInfo type. |
| 35 const base::Feature kSyncUSSDeviceInfo{"EnableSyncUSSDeviceInfo", | 35 const base::Feature kSyncUSSDeviceInfo{"EnableSyncUSSDeviceInfo", |
| 36 base::FEATURE_DISABLED_BY_DEFAULT}; | 36 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 37 | 37 |
| 38 } // namespace switches | 38 } // namespace switches |
| OLD | NEW |