| 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 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 extern const char kSyncSearchEngines[]; | 40 extern const char kSyncSearchEngines[]; |
| 41 extern const char kSyncSessions[]; | 41 extern const char kSyncSessions[]; |
| 42 extern const char kSyncSupervisedUserSettings[]; | 42 extern const char kSyncSupervisedUserSettings[]; |
| 43 extern const char kSyncSupervisedUserSharedSettings[]; | 43 extern const char kSyncSupervisedUserSharedSettings[]; |
| 44 extern const char kSyncSupervisedUsers[]; | 44 extern const char kSyncSupervisedUsers[]; |
| 45 extern const char kSyncSyncedNotificationAppInfo[]; | 45 extern const char kSyncSyncedNotificationAppInfo[]; |
| 46 extern const char kSyncSyncedNotifications[]; | 46 extern const char kSyncSyncedNotifications[]; |
| 47 extern const char kSyncTabs[]; | 47 extern const char kSyncTabs[]; |
| 48 extern const char kSyncThemes[]; | 48 extern const char kSyncThemes[]; |
| 49 extern const char kSyncTypedUrls[]; | 49 extern const char kSyncTypedUrls[]; |
| 50 extern const char kSyncWifiCredentials[]; |
| 50 | 51 |
| 51 extern const char kSyncManaged[]; | 52 extern const char kSyncManaged[]; |
| 52 extern const char kSyncSuppressStart[]; | 53 extern const char kSyncSuppressStart[]; |
| 53 | 54 |
| 54 extern const char kSyncUsingSecondaryPassphrase[]; | 55 extern const char kSyncUsingSecondaryPassphrase[]; |
| 55 extern const char kSyncEncryptionBootstrapToken[]; | 56 extern const char kSyncEncryptionBootstrapToken[]; |
| 56 extern const char kSyncKeystoreEncryptionBootstrapToken[]; | 57 extern const char kSyncKeystoreEncryptionBootstrapToken[]; |
| 57 | 58 |
| 58 extern const char kSyncAcknowledgedSyncTypes[]; | 59 extern const char kSyncAcknowledgedSyncTypes[]; |
| 59 | 60 |
| 60 extern const char kSyncSessionsGUID[]; | 61 extern const char kSyncSessionsGUID[]; |
| 61 | 62 |
| 62 #if defined(OS_CHROMEOS) | 63 #if defined(OS_CHROMEOS) |
| 63 extern const char kSyncSpareBootstrapToken[]; | 64 extern const char kSyncSpareBootstrapToken[]; |
| 64 #endif // defined(OS_CHROMEOS) | 65 #endif // defined(OS_CHROMEOS) |
| 65 | 66 |
| 66 extern const char kSyncRemainingRollbackTries[]; | 67 extern const char kSyncRemainingRollbackTries[]; |
| 67 extern const char kSyncFirstSyncTime[]; | 68 extern const char kSyncFirstSyncTime[]; |
| 68 | 69 |
| 69 } // namespace prefs | 70 } // namespace prefs |
| 70 | 71 |
| 71 } // namespace sync_driver | 72 } // namespace sync_driver |
| OLD | NEW |