OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 // Constants for the names of various sync preferences, for easier changing. | 5 // Constants for the names of various sync preferences, for easier changing. |
6 | 6 |
7 #ifndef COMPONENTS_SYNC_DRIVER_PREF_NAMES_H_ | 7 #ifndef COMPONENTS_SYNC_DRIVER_PREF_NAMES_H_ |
8 #define COMPONENTS_SYNC_DRIVER_PREF_NAMES_H_ | 8 #define COMPONENTS_SYNC_DRIVER_PREF_NAMES_H_ |
9 | 9 |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
(...skipping 22 matching lines...) Expand all Loading... |
33 extern const char kSyncDeviceInfo[]; | 33 extern const char kSyncDeviceInfo[]; |
34 extern const char kSyncDictionary[]; | 34 extern const char kSyncDictionary[]; |
35 extern const char kSyncExtensionSettings[]; | 35 extern const char kSyncExtensionSettings[]; |
36 extern const char kSyncExtensions[]; | 36 extern const char kSyncExtensions[]; |
37 extern const char kSyncFaviconImages[]; | 37 extern const char kSyncFaviconImages[]; |
38 extern const char kSyncFaviconTracking[]; | 38 extern const char kSyncFaviconTracking[]; |
39 extern const char kSyncHistoryDeleteDirectives[]; | 39 extern const char kSyncHistoryDeleteDirectives[]; |
40 extern const char kSyncPasswords[]; | 40 extern const char kSyncPasswords[]; |
41 extern const char kSyncPreferences[]; | 41 extern const char kSyncPreferences[]; |
42 extern const char kSyncPriorityPreferences[]; | 42 extern const char kSyncPriorityPreferences[]; |
| 43 extern const char kSyncPrinters[]; |
43 extern const char kSyncSearchEngines[]; | 44 extern const char kSyncSearchEngines[]; |
44 extern const char kSyncSessions[]; | 45 extern const char kSyncSessions[]; |
45 extern const char kSyncSupervisedUserSettings[]; | 46 extern const char kSyncSupervisedUserSettings[]; |
46 extern const char kSyncSupervisedUserSharedSettings[]; | 47 extern const char kSyncSupervisedUserSharedSettings[]; |
47 extern const char kSyncSupervisedUserWhitelists[]; | 48 extern const char kSyncSupervisedUserWhitelists[]; |
48 extern const char kSyncSupervisedUsers[]; | 49 extern const char kSyncSupervisedUsers[]; |
49 extern const char kSyncSyncedNotificationAppInfo[]; | 50 extern const char kSyncSyncedNotificationAppInfo[]; |
50 extern const char kSyncSyncedNotifications[]; | 51 extern const char kSyncSyncedNotifications[]; |
51 extern const char kSyncTabs[]; | 52 extern const char kSyncTabs[]; |
52 extern const char kSyncThemes[]; | 53 extern const char kSyncThemes[]; |
(...skipping 24 matching lines...) Expand all Loading... |
77 extern const char kSyncLastRunVersion[]; | 78 extern const char kSyncLastRunVersion[]; |
78 | 79 |
79 extern const char kSyncPassphraseEncryptionTransitionInProgress[]; | 80 extern const char kSyncPassphraseEncryptionTransitionInProgress[]; |
80 extern const char kSyncNigoriStateForPassphraseTransition[]; | 81 extern const char kSyncNigoriStateForPassphraseTransition[]; |
81 | 82 |
82 } // namespace prefs | 83 } // namespace prefs |
83 | 84 |
84 } // namespace sync_driver | 85 } // namespace sync_driver |
85 | 86 |
86 #endif // COMPONENTS_SYNC_DRIVER_PREF_NAMES_H_ | 87 #endif // COMPONENTS_SYNC_DRIVER_PREF_NAMES_H_ |
OLD | NEW |