| 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/base/pref_names.h" | 5 #include "components/sync/base/pref_names.h" |
| 6 | 6 |
| 7 namespace syncer { | 7 namespace syncer { |
| 8 | 8 |
| 9 namespace prefs { | 9 namespace prefs { |
| 10 | 10 |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 const char kSyncPassphraseEncryptionTransitionInProgress[] = | 117 const char kSyncPassphraseEncryptionTransitionInProgress[] = |
| 118 "sync.passphrase_encryption_transition_in_progress"; | 118 "sync.passphrase_encryption_transition_in_progress"; |
| 119 | 119 |
| 120 // Updated Nigori state after user entering passphrase. This Nigori state should | 120 // Updated Nigori state after user entering passphrase. This Nigori state should |
| 121 // be persisted across restarts and passed to backend when it is initialized | 121 // be persisted across restarts and passed to backend when it is initialized |
| 122 // after directory cleanup. Preference contains base64 encoded serialized | 122 // after directory cleanup. Preference contains base64 encoded serialized |
| 123 // sync_pb::NigoriSpecifics. | 123 // sync_pb::NigoriSpecifics. |
| 124 const char kSyncNigoriStateForPassphraseTransition[] = | 124 const char kSyncNigoriStateForPassphraseTransition[] = |
| 125 "sync.nigori_state_for_passphrase_transition"; | 125 "sync.nigori_state_for_passphrase_transition"; |
| 126 | 126 |
| 127 // Enabled the local sync backend implemented by the LoopbackServer. |
| 128 const char kEnableLocalSyncBackend[] = "sync.enable_local_sync_backend"; |
| 129 |
| 130 // Specifies the local sync backend directory. The name is chosen to mimic |
| 131 // user-data-dir etc. This flag only matters if the enable-local-sync-backend |
| 132 // flag is present. |
| 133 const char kLocalSyncBackendDir[] = "sync.local_sync_backend_dir"; |
| 134 |
| 127 } // namespace prefs | 135 } // namespace prefs |
| 128 | 136 |
| 129 } // namespace syncer | 137 } // namespace syncer |
| OLD | NEW |