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

Side by Side Diff: components/sync/driver/pref_names.h

Issue 2395533003: [Sync] Move some things from driver to base. (Closed)
Patch Set: Rebase. Created 4 years, 2 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
« no previous file with comments | « components/sync/driver/model_type_controller.h ('k') | components/sync/driver/pref_names.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 syncer {
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 kSyncPrinters[];
44 extern const char kSyncReadingList[];
45 extern const char kSyncSearchEngines[];
46 extern const char kSyncSessions[];
47 extern const char kSyncSupervisedUserSettings[];
48 extern const char kSyncSupervisedUserSharedSettings[];
49 extern const char kSyncSupervisedUserWhitelists[];
50 extern const char kSyncSupervisedUsers[];
51 extern const char kSyncSyncedNotificationAppInfo[];
52 extern const char kSyncSyncedNotifications[];
53 extern const char kSyncTabs[];
54 extern const char kSyncThemes[];
55 extern const char kSyncTypedUrls[];
56 extern const char kSyncWifiCredentials[];
57
58 extern const char kSyncManaged[];
59 extern const char kSyncSuppressStart[];
60
61 extern const char kSyncEncryptionBootstrapToken[];
62 extern const char kSyncKeystoreEncryptionBootstrapToken[];
63
64 extern const char kSyncSessionsGUID[];
65
66 #if defined(OS_CHROMEOS)
67 extern const char kSyncSpareBootstrapToken[];
68 #endif // defined(OS_CHROMEOS)
69
70 extern const char kSyncFirstSyncTime[];
71
72 extern const char kSyncPassphrasePrompted[];
73
74 extern const char kSyncMemoryPressureWarningCount[];
75 extern const char kSyncShutdownCleanly[];
76
77 extern const char kSyncInvalidationVersions[];
78
79 extern const char kSyncLastRunVersion[];
80
81 extern const char kSyncPassphraseEncryptionTransitionInProgress[];
82 extern const char kSyncNigoriStateForPassphraseTransition[];
83
84 } // namespace prefs
85
86 } // namespace syncer
87
88 #endif // COMPONENTS_SYNC_DRIVER_PREF_NAMES_H_
OLDNEW
« no previous file with comments | « components/sync/driver/model_type_controller.h ('k') | components/sync/driver/pref_names.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698