OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 | 8 |
9 namespace prefs { | 9 namespace prefs { |
10 | 10 |
(...skipping 1666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1677 const char kSyncAutofill[] = "sync.autofill"; | 1677 const char kSyncAutofill[] = "sync.autofill"; |
1678 const char kSyncAutofillProfile[] = "sync.autofill_profile"; | 1678 const char kSyncAutofillProfile[] = "sync.autofill_profile"; |
1679 const char kSyncThemes[] = "sync.themes"; | 1679 const char kSyncThemes[] = "sync.themes"; |
1680 const char kSyncTypedUrls[] = "sync.typed_urls"; | 1680 const char kSyncTypedUrls[] = "sync.typed_urls"; |
1681 const char kSyncExtensions[] = "sync.extensions"; | 1681 const char kSyncExtensions[] = "sync.extensions"; |
1682 const char kSyncExtensionSettings[] = "sync.extension_settings"; | 1682 const char kSyncExtensionSettings[] = "sync.extension_settings"; |
1683 const char kSyncSearchEngines[] = "sync.search_engines"; | 1683 const char kSyncSearchEngines[] = "sync.search_engines"; |
1684 const char kSyncSessions[] = "sync.sessions"; | 1684 const char kSyncSessions[] = "sync.sessions"; |
1685 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; | 1685 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; |
1686 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; | 1686 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; |
| 1687 const char kSyncDictionary[] = "sync.dictionary"; |
1687 | 1688 |
1688 // Boolean used by enterprise configuration management in order to lock down | 1689 // Boolean used by enterprise configuration management in order to lock down |
1689 // sync. | 1690 // sync. |
1690 const char kSyncManaged[] = "sync.managed"; | 1691 const char kSyncManaged[] = "sync.managed"; |
1691 | 1692 |
1692 // Boolean to prevent sync from automatically starting up. This is | 1693 // Boolean to prevent sync from automatically starting up. This is |
1693 // used when sync is disabled by the user via the privacy dashboard. | 1694 // used when sync is disabled by the user via the privacy dashboard. |
1694 const char kSyncSuppressStart[] = "sync.suppress_start"; | 1695 const char kSyncSuppressStart[] = "sync.suppress_start"; |
1695 | 1696 |
1696 // List of the currently acknowledged set of sync types, used to figure out | 1697 // List of the currently acknowledged set of sync types, used to figure out |
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2213 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2214 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
2214 | 2215 |
2215 #if defined(OS_CHROMEOS) | 2216 #if defined(OS_CHROMEOS) |
2216 // The RLZ brand code, if enabled. | 2217 // The RLZ brand code, if enabled. |
2217 const char kRLZBrand[] = "rlz.brand"; | 2218 const char kRLZBrand[] = "rlz.brand"; |
2218 // Whether RLZ pings are disabled. | 2219 // Whether RLZ pings are disabled. |
2219 const char kRLZDisabled[] = "rlz.disabled"; | 2220 const char kRLZDisabled[] = "rlz.disabled"; |
2220 #endif | 2221 #endif |
2221 | 2222 |
2222 } // namespace prefs | 2223 } // namespace prefs |
OLD | NEW |