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

Side by Side Diff: components/sync_driver/pref_names.h

Issue 2203673002: [Sync] Move //components/sync_driver to //components/sync/driver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sd-a
Patch Set: Full change rebased on static lib. Created 4 years, 4 months 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
(Empty)
1 // Copyright 2014 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 // Constants for the names of various sync preferences, for easier changing.
6
7 #ifndef COMPONENTS_SYNC_DRIVER_PREF_NAMES_H_
8 #define COMPONENTS_SYNC_DRIVER_PREF_NAMES_H_
9
10 #include "build/build_config.h"
11
12 namespace sync_driver {
13
14 namespace prefs {
15
16 extern const char kSyncLastSyncedTime[];
17 extern const char kSyncLastPollTime[];
18 extern const char kSyncHasAuthError[];
19 extern const char kSyncFirstSetupComplete[];
20 extern const char kSyncKeepEverythingSynced[];
21
22 extern const char kSyncAppList[];
23 extern const char kSyncAppNotifications[];
24 extern const char kSyncAppSettings[];
25 extern const char kSyncApps[];
26 extern const char kSyncArcPackage[];
27 extern const char kSyncArticles[];
28 extern const char kSyncAutofillProfile[];
29 extern const char kSyncAutofillWallet[];
30 extern const char kSyncAutofillWalletMetadata[];
31 extern const char kSyncAutofill[];
32 extern const char kSyncBookmarks[];
33 extern const char kSyncDeviceInfo[];
34 extern const char kSyncDictionary[];
35 extern const char kSyncExtensionSettings[];
36 extern const char kSyncExtensions[];
37 extern const char kSyncFaviconImages[];
38 extern const char kSyncFaviconTracking[];
39 extern const char kSyncHistoryDeleteDirectives[];
40 extern const char kSyncPasswords[];
41 extern const char kSyncPreferences[];
42 extern const char kSyncPriorityPreferences[];
43 extern const char kSyncSearchEngines[];
44 extern const char kSyncSessions[];
45 extern const char kSyncSupervisedUserSettings[];
46 extern const char kSyncSupervisedUserSharedSettings[];
47 extern const char kSyncSupervisedUserWhitelists[];
48 extern const char kSyncSupervisedUsers[];
49 extern const char kSyncSyncedNotificationAppInfo[];
50 extern const char kSyncSyncedNotifications[];
51 extern const char kSyncTabs[];
52 extern const char kSyncThemes[];
53 extern const char kSyncTypedUrls[];
54 extern const char kSyncWifiCredentials[];
55
56 extern const char kSyncManaged[];
57 extern const char kSyncSuppressStart[];
58
59 extern const char kSyncEncryptionBootstrapToken[];
60 extern const char kSyncKeystoreEncryptionBootstrapToken[];
61
62 extern const char kSyncSessionsGUID[];
63
64 #if defined(OS_CHROMEOS)
65 extern const char kSyncSpareBootstrapToken[];
66 #endif // defined(OS_CHROMEOS)
67
68 extern const char kSyncFirstSyncTime[];
69
70 extern const char kSyncPassphrasePrompted[];
71
72 extern const char kSyncMemoryPressureWarningCount[];
73 extern const char kSyncShutdownCleanly[];
74
75 extern const char kSyncInvalidationVersions[];
76
77 extern const char kSyncLastRunVersion[];
78
79 extern const char kSyncPassphraseEncryptionTransitionInProgress[];
80 extern const char kSyncNigoriStateForPassphraseTransition[];
81
82 } // namespace prefs
83
84 } // namespace sync_driver
85
86 #endif // COMPONENTS_SYNC_DRIVER_PREF_NAMES_H_
OLDNEW
« no previous file with comments | « components/sync_driver/non_ui_model_type_controller_unittest.cc ('k') | components/sync_driver/pref_names.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698