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 28 matching lines...) Expand all Loading... |
39 // Enables USS implementation of DeviceInfo datatype. This flag controls whether | 39 // Enables USS implementation of DeviceInfo datatype. This flag controls whether |
40 // SyncableService based or ModelTypeSyncBridge based implementation is used for | 40 // SyncableService based or ModelTypeSyncBridge based implementation is used for |
41 // DeviceInfo type. | 41 // DeviceInfo type. |
42 const base::Feature kSyncUSSDeviceInfo{"EnableSyncUSSDeviceInfo", | 42 const base::Feature kSyncUSSDeviceInfo{"EnableSyncUSSDeviceInfo", |
43 base::FEATURE_DISABLED_BY_DEFAULT}; | 43 base::FEATURE_DISABLED_BY_DEFAULT}; |
44 | 44 |
45 // Enables USS implementation of Autocomplete datatype. | 45 // Enables USS implementation of Autocomplete datatype. |
46 const base::Feature kSyncUSSAutocomplete{"SyncUSSAutocomplete", | 46 const base::Feature kSyncUSSAutocomplete{"SyncUSSAutocomplete", |
47 base::FEATURE_DISABLED_BY_DEFAULT}; | 47 base::FEATURE_DISABLED_BY_DEFAULT}; |
48 | 48 |
| 49 // Enables USS implementation of typed URL datatype. |
| 50 const base::Feature kSyncUSSTypedURL{"SyncUSSTypedURL", |
| 51 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 52 |
49 } // namespace switches | 53 } // namespace switches |
OLD | NEW |