| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 extern const char kSyncKeystoreEncryptionBootstrapToken[]; | 54 extern const char kSyncKeystoreEncryptionBootstrapToken[]; |
| 55 | 55 |
| 56 extern const char kSyncAcknowledgedSyncTypes[]; | 56 extern const char kSyncAcknowledgedSyncTypes[]; |
| 57 | 57 |
| 58 extern const char kSyncSessionsGUID[]; | 58 extern const char kSyncSessionsGUID[]; |
| 59 | 59 |
| 60 #if defined(OS_CHROMEOS) | 60 #if defined(OS_CHROMEOS) |
| 61 extern const char kSyncSpareBootstrapToken[]; | 61 extern const char kSyncSpareBootstrapToken[]; |
| 62 #endif // defined(OS_CHROMEOS) | 62 #endif // defined(OS_CHROMEOS) |
| 63 | 63 |
| 64 extern const char kSyncRemainingRollbackTries[]; |
| 65 |
| 64 } // namespace prefs | 66 } // namespace prefs |
| 65 | 67 |
| 66 } // namespace sync_driver | 68 } // namespace sync_driver |
| OLD | NEW |