| 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 #include "components/sync_driver/pref_names.h" | 5 #include "components/sync_driver/pref_names.h" |
| 6 | 6 |
| 7 namespace sync_driver { | 7 namespace sync_driver { |
| 8 | 8 |
| 9 namespace prefs { | 9 namespace prefs { |
| 10 | 10 |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 // The GUID session sync will use to identify this client, even across sync | 88 // The GUID session sync will use to identify this client, even across sync |
| 89 // disable/enable events. | 89 // disable/enable events. |
| 90 const char kSyncSessionsGUID[] = "sync.session_sync_guid"; | 90 const char kSyncSessionsGUID[] = "sync.session_sync_guid"; |
| 91 | 91 |
| 92 #if defined(OS_CHROMEOS) | 92 #if defined(OS_CHROMEOS) |
| 93 // A string that is used to store first-time sync startup after once sync is | 93 // A string that is used to store first-time sync startup after once sync is |
| 94 // disabled. This will be refreshed every sign-in. | 94 // disabled. This will be refreshed every sign-in. |
| 95 const char kSyncSpareBootstrapToken[] = "sync.spare_bootstrap_token"; | 95 const char kSyncSpareBootstrapToken[] = "sync.spare_bootstrap_token"; |
| 96 #endif // defined(OS_CHROMEOS) | 96 #endif // defined(OS_CHROMEOS) |
| 97 | 97 |
| 98 // Stores how many times to try rollback before giving up. |
| 99 const char kSyncRemainingRollbackTries[] = "sync.remaining_rollback_tries"; |
| 100 |
| 98 } // namespace prefs | 101 } // namespace prefs |
| 99 | 102 |
| 100 } // namespace sync_driver | 103 } // namespace sync_driver |
| OLD | NEW |