| 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 1628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1639 const char kSyncApps[] = "sync.apps"; | 1639 const char kSyncApps[] = "sync.apps"; |
| 1640 const char kSyncAutofill[] = "sync.autofill"; | 1640 const char kSyncAutofill[] = "sync.autofill"; |
| 1641 const char kSyncAutofillProfile[] = "sync.autofill_profile"; | 1641 const char kSyncAutofillProfile[] = "sync.autofill_profile"; |
| 1642 const char kSyncThemes[] = "sync.themes"; | 1642 const char kSyncThemes[] = "sync.themes"; |
| 1643 const char kSyncTypedUrls[] = "sync.typed_urls"; | 1643 const char kSyncTypedUrls[] = "sync.typed_urls"; |
| 1644 const char kSyncExtensions[] = "sync.extensions"; | 1644 const char kSyncExtensions[] = "sync.extensions"; |
| 1645 const char kSyncExtensionSettings[] = "sync.extension_settings"; | 1645 const char kSyncExtensionSettings[] = "sync.extension_settings"; |
| 1646 const char kSyncSearchEngines[] = "sync.search_engines"; | 1646 const char kSyncSearchEngines[] = "sync.search_engines"; |
| 1647 const char kSyncSessions[] = "sync.sessions"; | 1647 const char kSyncSessions[] = "sync.sessions"; |
| 1648 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; | 1648 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; |
| 1649 const char kSyncPushNotifications[] = "sync.push_notifications"; |
| 1649 | 1650 |
| 1650 // Boolean used by enterprise configuration management in order to lock down | 1651 // Boolean used by enterprise configuration management in order to lock down |
| 1651 // sync. | 1652 // sync. |
| 1652 const char kSyncManaged[] = "sync.managed"; | 1653 const char kSyncManaged[] = "sync.managed"; |
| 1653 | 1654 |
| 1654 // Boolean to prevent sync from automatically starting up. This is | 1655 // Boolean to prevent sync from automatically starting up. This is |
| 1655 // used when sync is disabled by the user via the privacy dashboard. | 1656 // used when sync is disabled by the user via the privacy dashboard. |
| 1656 const char kSyncSuppressStart[] = "sync.suppress_start"; | 1657 const char kSyncSuppressStart[] = "sync.suppress_start"; |
| 1657 | 1658 |
| 1658 // List of the currently acknowledged set of sync types, used to figure out | 1659 // List of the currently acknowledged set of sync types, used to figure out |
| (...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2156 // Tracks the time of the last shown warning. Used to reset | 2157 // Tracks the time of the last shown warning. Used to reset |
| 2157 // |network_profile.warnings_left| after a silence period. | 2158 // |network_profile.warnings_left| after a silence period. |
| 2158 const char kNetworkProfileLastWarningTime[] = | 2159 const char kNetworkProfileLastWarningTime[] = |
| 2159 "network_profile.last_warning_time"; | 2160 "network_profile.last_warning_time"; |
| 2160 | 2161 |
| 2161 // 64-bit serialization of the time last policy usage statistics were collected | 2162 // 64-bit serialization of the time last policy usage statistics were collected |
| 2162 // by UMA_HISTOGRAM_ENUMERATION. | 2163 // by UMA_HISTOGRAM_ENUMERATION. |
| 2163 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2164 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2164 | 2165 |
| 2165 } // namespace prefs | 2166 } // namespace prefs |
| OLD | NEW |