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 28 matching lines...) Expand all Loading... |
39 extern const char kSyncSearchEngines[]; | 39 extern const char kSyncSearchEngines[]; |
40 extern const char kSyncSessions[]; | 40 extern const char kSyncSessions[]; |
41 extern const char kSyncSupervisedUserSettings[]; | 41 extern const char kSyncSupervisedUserSettings[]; |
42 extern const char kSyncSupervisedUserSharedSettings[]; | 42 extern const char kSyncSupervisedUserSharedSettings[]; |
43 extern const char kSyncSupervisedUsers[]; | 43 extern const char kSyncSupervisedUsers[]; |
44 extern const char kSyncSyncedNotificationAppInfo[]; | 44 extern const char kSyncSyncedNotificationAppInfo[]; |
45 extern const char kSyncSyncedNotifications[]; | 45 extern const char kSyncSyncedNotifications[]; |
46 extern const char kSyncTabs[]; | 46 extern const char kSyncTabs[]; |
47 extern const char kSyncThemes[]; | 47 extern const char kSyncThemes[]; |
48 extern const char kSyncTypedUrls[]; | 48 extern const char kSyncTypedUrls[]; |
| 49 extern const char kSyncWifiCredentials[]; |
49 | 50 |
50 extern const char kSyncManaged[]; | 51 extern const char kSyncManaged[]; |
51 extern const char kSyncSuppressStart[]; | 52 extern const char kSyncSuppressStart[]; |
52 | 53 |
53 extern const char kSyncUsingSecondaryPassphrase[]; | 54 extern const char kSyncUsingSecondaryPassphrase[]; |
54 extern const char kSyncEncryptionBootstrapToken[]; | 55 extern const char kSyncEncryptionBootstrapToken[]; |
55 extern const char kSyncKeystoreEncryptionBootstrapToken[]; | 56 extern const char kSyncKeystoreEncryptionBootstrapToken[]; |
56 | 57 |
57 extern const char kSyncAcknowledgedSyncTypes[]; | 58 extern const char kSyncAcknowledgedSyncTypes[]; |
58 | 59 |
59 extern const char kSyncSessionsGUID[]; | 60 extern const char kSyncSessionsGUID[]; |
60 | 61 |
61 #if defined(OS_CHROMEOS) | 62 #if defined(OS_CHROMEOS) |
62 extern const char kSyncSpareBootstrapToken[]; | 63 extern const char kSyncSpareBootstrapToken[]; |
63 #endif // defined(OS_CHROMEOS) | 64 #endif // defined(OS_CHROMEOS) |
64 | 65 |
65 extern const char kSyncRemainingRollbackTries[]; | 66 extern const char kSyncRemainingRollbackTries[]; |
66 extern const char kSyncFirstSyncTime[]; | 67 extern const char kSyncFirstSyncTime[]; |
67 | 68 |
68 } // namespace prefs | 69 } // namespace prefs |
69 | 70 |
70 } // namespace sync_driver | 71 } // namespace sync_driver |
OLD | NEW |