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 1598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1609 const char kSyncAppSettings[] = "sync.app_settings"; | 1609 const char kSyncAppSettings[] = "sync.app_settings"; |
1610 const char kSyncApps[] = "sync.apps"; | 1610 const char kSyncApps[] = "sync.apps"; |
1611 const char kSyncAutofill[] = "sync.autofill"; | 1611 const char kSyncAutofill[] = "sync.autofill"; |
1612 const char kSyncAutofillProfile[] = "sync.autofill_profile"; | 1612 const char kSyncAutofillProfile[] = "sync.autofill_profile"; |
1613 const char kSyncThemes[] = "sync.themes"; | 1613 const char kSyncThemes[] = "sync.themes"; |
1614 const char kSyncTypedUrls[] = "sync.typed_urls"; | 1614 const char kSyncTypedUrls[] = "sync.typed_urls"; |
1615 const char kSyncExtensions[] = "sync.extensions"; | 1615 const char kSyncExtensions[] = "sync.extensions"; |
1616 const char kSyncExtensionSettings[] = "sync.extension_settings"; | 1616 const char kSyncExtensionSettings[] = "sync.extension_settings"; |
1617 const char kSyncSearchEngines[] = "sync.search_engines"; | 1617 const char kSyncSearchEngines[] = "sync.search_engines"; |
1618 const char kSyncSessions[] = "sync.sessions"; | 1618 const char kSyncSessions[] = "sync.sessions"; |
| 1619 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; |
1619 | 1620 |
1620 // Boolean used by enterprise configuration management in order to lock down | 1621 // Boolean used by enterprise configuration management in order to lock down |
1621 // sync. | 1622 // sync. |
1622 const char kSyncManaged[] = "sync.managed"; | 1623 const char kSyncManaged[] = "sync.managed"; |
1623 | 1624 |
1624 // Boolean to prevent sync from automatically starting up. This is | 1625 // Boolean to prevent sync from automatically starting up. This is |
1625 // used when sync is disabled by the user via the privacy dashboard. | 1626 // used when sync is disabled by the user via the privacy dashboard. |
1626 const char kSyncSuppressStart[] = "sync.suppress_start"; | 1627 const char kSyncSuppressStart[] = "sync.suppress_start"; |
1627 | 1628 |
1628 // List of the currently acknowledged set of sync types, used to figure out | 1629 // List of the currently acknowledged set of sync types, used to figure out |
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2088 // Tracks the time of the last shown warning. Used to reset | 2089 // Tracks the time of the last shown warning. Used to reset |
2089 // |network_profile.warnings_left| after a silence period. | 2090 // |network_profile.warnings_left| after a silence period. |
2090 const char kNetworkProfileLastWarningTime[] = | 2091 const char kNetworkProfileLastWarningTime[] = |
2091 "network_profile.last_warning_time"; | 2092 "network_profile.last_warning_time"; |
2092 | 2093 |
2093 // 64-bit serialization of the time last policy usage statistics were collected | 2094 // 64-bit serialization of the time last policy usage statistics were collected |
2094 // by UMA_HISTOGRAM_ENUMERATION. | 2095 // by UMA_HISTOGRAM_ENUMERATION. |
2095 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2096 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
2096 | 2097 |
2097 } // namespace prefs | 2098 } // namespace prefs |
OLD | NEW |