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 #include "build/build_config.h" | 7 #include "build/build_config.h" |
8 | 8 |
9 namespace sync_driver { | 9 namespace sync_driver { |
10 | 10 |
11 namespace prefs { | 11 namespace prefs { |
12 | 12 |
13 extern const char kSyncLastSyncedTime[]; | 13 extern const char kSyncLastSyncedTime[]; |
14 extern const char kSyncLastPollTime[]; | 14 extern const char kSyncLastPollTime[]; |
15 extern const char kSyncHasAuthError[]; | 15 extern const char kSyncHasAuthError[]; |
16 extern const char kSyncHasSetupCompleted[]; | 16 extern const char kSyncHasSetupCompleted[]; |
17 extern const char kSyncKeepEverythingSynced[]; | 17 extern const char kSyncKeepEverythingSynced[]; |
18 | 18 |
19 extern const char kSyncAppList[]; | 19 extern const char kSyncAppList[]; |
20 extern const char kSyncAppNotifications[]; | 20 extern const char kSyncAppNotifications[]; |
21 extern const char kSyncAppSettings[]; | 21 extern const char kSyncAppSettings[]; |
22 extern const char kSyncApps[]; | 22 extern const char kSyncApps[]; |
23 extern const char kSyncArticles[]; | 23 extern const char kSyncArticles[]; |
24 extern const char kSyncAutofillProfile[]; | 24 extern const char kSyncAutofillProfile[]; |
25 extern const char kSyncAutofillWallet[]; | 25 extern const char kSyncAutofillWallet[]; |
| 26 extern const char kSyncAutofillWalletMetadata[]; |
26 extern const char kSyncAutofill[]; | 27 extern const char kSyncAutofill[]; |
27 extern const char kSyncBookmarks[]; | 28 extern const char kSyncBookmarks[]; |
28 extern const char kSyncDeviceInfo[]; | 29 extern const char kSyncDeviceInfo[]; |
29 extern const char kSyncDictionary[]; | 30 extern const char kSyncDictionary[]; |
30 extern const char kSyncExtensionSettings[]; | 31 extern const char kSyncExtensionSettings[]; |
31 extern const char kSyncExtensions[]; | 32 extern const char kSyncExtensions[]; |
32 extern const char kSyncFaviconImages[]; | 33 extern const char kSyncFaviconImages[]; |
33 extern const char kSyncFaviconTracking[]; | 34 extern const char kSyncFaviconTracking[]; |
34 extern const char kSyncHistoryDeleteDirectives[]; | 35 extern const char kSyncHistoryDeleteDirectives[]; |
35 extern const char kSyncPasswords[]; | 36 extern const char kSyncPasswords[]; |
(...skipping 29 matching lines...) Expand all Loading... |
65 extern const char kSyncFirstSyncTime[]; | 66 extern const char kSyncFirstSyncTime[]; |
66 | 67 |
67 extern const char kSyncPassphrasePrompted[]; | 68 extern const char kSyncPassphrasePrompted[]; |
68 | 69 |
69 extern const char kSyncMemoryPressureWarningCount[]; | 70 extern const char kSyncMemoryPressureWarningCount[]; |
70 extern const char kSyncShutdownCleanly[]; | 71 extern const char kSyncShutdownCleanly[]; |
71 | 72 |
72 } // namespace prefs | 73 } // namespace prefs |
73 | 74 |
74 } // namespace sync_driver | 75 } // namespace sync_driver |
OLD | NEW |