Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: components/sync/driver/sync_driver_switches.cc

Issue 2508263003: [sync] skeleton implementation of AutocompleteSyncBridge (Closed)
Patch Set: [sync] skeleton implementation of autocomplete_sync_bridge Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 19 matching lines...) Expand all
30 // and prevention of server overload, so don't use this unless you're really 30 // and prevention of server overload, so don't use this unless you're really
31 // sure 31 // sure
32 // that it's what you want. 32 // that it's what you want.
33 const char kSyncShortNudgeDelayForTest[] = "sync-short-nudge-delay-for-test"; 33 const char kSyncShortNudgeDelayForTest[] = "sync-short-nudge-delay-for-test";
34 34
35 // Enables clearing of sync data when a user enables passphrase encryption. 35 // Enables clearing of sync data when a user enables passphrase encryption.
36 const base::Feature kSyncClearDataOnPassphraseEncryption{ 36 const base::Feature kSyncClearDataOnPassphraseEncryption{
37 "ClearSyncDataOnPassphraseEncryption", base::FEATURE_DISABLED_BY_DEFAULT}; 37 "ClearSyncDataOnPassphraseEncryption", base::FEATURE_DISABLED_BY_DEFAULT};
38 38
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 ModelTypeService based implementation is used for 40 // SyncableService based or ModelTypeBridge based implementation is used for
maxbogue 2016/11/18 22:22:36 ModelTypeSyncBridge
Patrick Noland 2016/11/22 18:51:05 Done.
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.
46 const base::Feature kSyncUSSAutocomplete{"EnableSyncUSSAutocomplete",
maxbogue 2016/11/18 22:22:36 I actually dislike that the DeviceInfo one has "En
Patrick Noland 2016/11/22 18:51:05 Done.
47 base::FEATURE_DISABLED_BY_DEFAULT};
48
45 } // namespace switches 49 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698