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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 extern const char kSyncTypedUrls[]; | 50 extern const char kSyncTypedUrls[]; |
51 extern const char kSyncWifiCredentials[]; | 51 extern const char kSyncWifiCredentials[]; |
52 | 52 |
53 extern const char kSyncManaged[]; | 53 extern const char kSyncManaged[]; |
54 extern const char kSyncSuppressStart[]; | 54 extern const char kSyncSuppressStart[]; |
55 | 55 |
56 extern const char kSyncUsingSecondaryPassphrase[]; | 56 extern const char kSyncUsingSecondaryPassphrase[]; |
57 extern const char kSyncEncryptionBootstrapToken[]; | 57 extern const char kSyncEncryptionBootstrapToken[]; |
58 extern const char kSyncKeystoreEncryptionBootstrapToken[]; | 58 extern const char kSyncKeystoreEncryptionBootstrapToken[]; |
59 | 59 |
60 extern const char kSyncAcknowledgedSyncTypes[]; | |
61 | |
62 extern const char kSyncSessionsGUID[]; | 60 extern const char kSyncSessionsGUID[]; |
63 | 61 |
64 #if defined(OS_CHROMEOS) | 62 #if defined(OS_CHROMEOS) |
65 extern const char kSyncSpareBootstrapToken[]; | 63 extern const char kSyncSpareBootstrapToken[]; |
66 #endif // defined(OS_CHROMEOS) | 64 #endif // defined(OS_CHROMEOS) |
67 | 65 |
68 extern const char kSyncRemainingRollbackTries[]; | 66 extern const char kSyncRemainingRollbackTries[]; |
69 extern const char kSyncFirstSyncTime[]; | 67 extern const char kSyncFirstSyncTime[]; |
70 | 68 |
71 } // namespace prefs | 69 } // namespace prefs |
72 | 70 |
73 } // namespace sync_driver | 71 } // namespace sync_driver |
OLD | NEW |