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