| 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 syncer { |
| 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[]; |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 | 76 |
| 77 extern const char kSyncInvalidationVersions[]; | 77 extern const char kSyncInvalidationVersions[]; |
| 78 | 78 |
| 79 extern const char kSyncLastRunVersion[]; | 79 extern const char kSyncLastRunVersion[]; |
| 80 | 80 |
| 81 extern const char kSyncPassphraseEncryptionTransitionInProgress[]; | 81 extern const char kSyncPassphraseEncryptionTransitionInProgress[]; |
| 82 extern const char kSyncNigoriStateForPassphraseTransition[]; | 82 extern const char kSyncNigoriStateForPassphraseTransition[]; |
| 83 | 83 |
| 84 } // namespace prefs | 84 } // namespace prefs |
| 85 | 85 |
| 86 } // namespace sync_driver | 86 } // namespace syncer |
| 87 | 87 |
| 88 #endif // COMPONENTS_SYNC_DRIVER_PREF_NAMES_H_ | 88 #endif // COMPONENTS_SYNC_DRIVER_PREF_NAMES_H_ |
| OLD | NEW |