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 23 matching lines...) Expand all Loading... |
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 kSyncPrinters[]; |
| 44 extern const char kSyncReadingList[]; |
44 extern const char kSyncSearchEngines[]; | 45 extern const char kSyncSearchEngines[]; |
45 extern const char kSyncSessions[]; | 46 extern const char kSyncSessions[]; |
46 extern const char kSyncSupervisedUserSettings[]; | 47 extern const char kSyncSupervisedUserSettings[]; |
47 extern const char kSyncSupervisedUserSharedSettings[]; | 48 extern const char kSyncSupervisedUserSharedSettings[]; |
48 extern const char kSyncSupervisedUserWhitelists[]; | 49 extern const char kSyncSupervisedUserWhitelists[]; |
49 extern const char kSyncSupervisedUsers[]; | 50 extern const char kSyncSupervisedUsers[]; |
50 extern const char kSyncSyncedNotificationAppInfo[]; | 51 extern const char kSyncSyncedNotificationAppInfo[]; |
51 extern const char kSyncSyncedNotifications[]; | 52 extern const char kSyncSyncedNotifications[]; |
52 extern const char kSyncTabs[]; | 53 extern const char kSyncTabs[]; |
53 extern const char kSyncThemes[]; | 54 extern const char kSyncThemes[]; |
(...skipping 24 matching lines...) Expand all Loading... |
78 extern const char kSyncLastRunVersion[]; | 79 extern const char kSyncLastRunVersion[]; |
79 | 80 |
80 extern const char kSyncPassphraseEncryptionTransitionInProgress[]; | 81 extern const char kSyncPassphraseEncryptionTransitionInProgress[]; |
81 extern const char kSyncNigoriStateForPassphraseTransition[]; | 82 extern const char kSyncNigoriStateForPassphraseTransition[]; |
82 | 83 |
83 } // namespace prefs | 84 } // namespace prefs |
84 | 85 |
85 } // namespace sync_driver | 86 } // namespace sync_driver |
86 | 87 |
87 #endif // COMPONENTS_SYNC_DRIVER_PREF_NAMES_H_ | 88 #endif // COMPONENTS_SYNC_DRIVER_PREF_NAMES_H_ |
OLD | NEW |