| 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" |
| 11 | 11 |
| 12 namespace sync_driver { | 12 namespace sync_driver { |
| 13 | 13 |
| 14 namespace prefs { | 14 namespace prefs { |
| 15 | 15 |
| 16 extern const char kSyncLastSyncedTime[]; | 16 extern const char kSyncLastSyncedTime[]; |
| 17 extern const char kSyncLastPollTime[]; | 17 extern const char kSyncLastPollTime[]; |
| 18 extern const char kSyncHasAuthError[]; | 18 extern const char kSyncHasAuthError[]; |
| 19 extern const char kSyncFirstSetupComplete[]; | 19 extern const char kSyncFirstSetupComplete[]; |
| 20 extern const char kSyncKeepEverythingSynced[]; | 20 extern const char kSyncKeepEverythingSynced[]; |
| 21 | 21 |
| 22 extern const char kSyncAppList[]; | 22 extern const char kSyncAppList[]; |
| 23 extern const char kSyncAppNotifications[]; | 23 extern const char kSyncAppNotifications[]; |
| 24 extern const char kSyncAppSettings[]; | 24 extern const char kSyncAppSettings[]; |
| 25 extern const char kSyncApps[]; | 25 extern const char kSyncApps[]; |
| 26 extern const char kSyncArcPackage[]; |
| 26 extern const char kSyncArticles[]; | 27 extern const char kSyncArticles[]; |
| 27 extern const char kSyncAutofillProfile[]; | 28 extern const char kSyncAutofillProfile[]; |
| 28 extern const char kSyncAutofillWallet[]; | 29 extern const char kSyncAutofillWallet[]; |
| 29 extern const char kSyncAutofillWalletMetadata[]; | 30 extern const char kSyncAutofillWalletMetadata[]; |
| 30 extern const char kSyncAutofill[]; | 31 extern const char kSyncAutofill[]; |
| 31 extern const char kSyncBookmarks[]; | 32 extern const char kSyncBookmarks[]; |
| 32 extern const char kSyncDeviceInfo[]; | 33 extern const char kSyncDeviceInfo[]; |
| 33 extern const char kSyncDictionary[]; | 34 extern const char kSyncDictionary[]; |
| 34 extern const char kSyncExtensionSettings[]; | 35 extern const char kSyncExtensionSettings[]; |
| 35 extern const char kSyncExtensions[]; | 36 extern const char kSyncExtensions[]; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 extern const char kSyncLastRunVersion[]; | 77 extern const char kSyncLastRunVersion[]; |
| 77 | 78 |
| 78 extern const char kSyncPassphraseEncryptionTransitionInProgress[]; | 79 extern const char kSyncPassphraseEncryptionTransitionInProgress[]; |
| 79 extern const char kSyncNigoriStateForPassphraseTransition[]; | 80 extern const char kSyncNigoriStateForPassphraseTransition[]; |
| 80 | 81 |
| 81 } // namespace prefs | 82 } // namespace prefs |
| 82 | 83 |
| 83 } // namespace sync_driver | 84 } // namespace sync_driver |
| 84 | 85 |
| 85 #endif // COMPONENTS_SYNC_DRIVER_PREF_NAMES_H_ | 86 #endif // COMPONENTS_SYNC_DRIVER_PREF_NAMES_H_ |
| OLD | NEW |