| 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 1675 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1686 const char kSyncAutofill[] = "sync.autofill"; | 1686 const char kSyncAutofill[] = "sync.autofill"; |
| 1687 const char kSyncAutofillProfile[] = "sync.autofill_profile"; | 1687 const char kSyncAutofillProfile[] = "sync.autofill_profile"; |
| 1688 const char kSyncThemes[] = "sync.themes"; | 1688 const char kSyncThemes[] = "sync.themes"; |
| 1689 const char kSyncTypedUrls[] = "sync.typed_urls"; | 1689 const char kSyncTypedUrls[] = "sync.typed_urls"; |
| 1690 const char kSyncExtensions[] = "sync.extensions"; | 1690 const char kSyncExtensions[] = "sync.extensions"; |
| 1691 const char kSyncExtensionSettings[] = "sync.extension_settings"; | 1691 const char kSyncExtensionSettings[] = "sync.extension_settings"; |
| 1692 const char kSyncSearchEngines[] = "sync.search_engines"; | 1692 const char kSyncSearchEngines[] = "sync.search_engines"; |
| 1693 const char kSyncSessions[] = "sync.sessions"; | 1693 const char kSyncSessions[] = "sync.sessions"; |
| 1694 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; | 1694 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; |
| 1695 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; | 1695 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; |
| 1696 const char kSyncDictionary[] = "sync.dictionary"; |
| 1696 | 1697 |
| 1697 // Boolean used by enterprise configuration management in order to lock down | 1698 // Boolean used by enterprise configuration management in order to lock down |
| 1698 // sync. | 1699 // sync. |
| 1699 const char kSyncManaged[] = "sync.managed"; | 1700 const char kSyncManaged[] = "sync.managed"; |
| 1700 | 1701 |
| 1701 // Boolean to prevent sync from automatically starting up. This is | 1702 // Boolean to prevent sync from automatically starting up. This is |
| 1702 // used when sync is disabled by the user via the privacy dashboard. | 1703 // used when sync is disabled by the user via the privacy dashboard. |
| 1703 const char kSyncSuppressStart[] = "sync.suppress_start"; | 1704 const char kSyncSuppressStart[] = "sync.suppress_start"; |
| 1704 | 1705 |
| 1705 // List of the currently acknowledged set of sync types, used to figure out | 1706 // List of the currently acknowledged set of sync types, used to figure out |
| (...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2226 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2227 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2227 | 2228 |
| 2228 #if defined(OS_CHROMEOS) | 2229 #if defined(OS_CHROMEOS) |
| 2229 // The RLZ brand code, if enabled. | 2230 // The RLZ brand code, if enabled. |
| 2230 const char kRLZBrand[] = "rlz.brand"; | 2231 const char kRLZBrand[] = "rlz.brand"; |
| 2231 // Whether RLZ pings are disabled. | 2232 // Whether RLZ pings are disabled. |
| 2232 const char kRLZDisabled[] = "rlz.disabled"; | 2233 const char kRLZDisabled[] = "rlz.disabled"; |
| 2233 #endif | 2234 #endif |
| 2234 | 2235 |
| 2235 } // namespace prefs | 2236 } // namespace prefs |
| OLD | NEW |