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 1579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1590 | 1590 |
1591 // An integer pref which shows number of times carrier deal promo | 1591 // An integer pref which shows number of times carrier deal promo |
1592 // notification has been shown to user. | 1592 // notification has been shown to user. |
1593 const char kCarrierDealPromoShown[] = | 1593 const char kCarrierDealPromoShown[] = |
1594 "settings.internet.mobile.carrier_deal_promo_shown"; | 1594 "settings.internet.mobile.carrier_deal_promo_shown"; |
1595 | 1595 |
1596 // A boolean pref of the auto-enrollment decision. This pref only exists if the | 1596 // A boolean pref of the auto-enrollment decision. This pref only exists if the |
1597 // auto-enrollment check has been done once and completed. It can be reset to | 1597 // auto-enrollment check has been done once and completed. It can be reset to |
1598 // false if the user opts out of auto enrollment. | 1598 // false if the user opts out of auto enrollment. |
1599 const char kShouldAutoEnroll[] = "ShouldAutoEnroll"; | 1599 const char kShouldAutoEnroll[] = "ShouldAutoEnroll"; |
| 1600 |
| 1601 // A boolean pref that indicates whether OS & firmware version info should be |
| 1602 // reported along with device policy requests. |
| 1603 const char kReportDeviceVersionInfo[] = "device_status.report_version_info"; |
| 1604 |
| 1605 // A boolean pref that indicates whether device activity times should be |
| 1606 // recorded and reported along with device policy requests. |
| 1607 const char kReportDeviceActivityTimes[] = "device_status.report_activity_times"; |
1600 #endif | 1608 #endif |
1601 | 1609 |
1602 // Whether there is a Flash version installed that supports clearing LSO data. | 1610 // Whether there is a Flash version installed that supports clearing LSO data. |
1603 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; | 1611 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; |
1604 | 1612 |
1605 // String which specifies where to store the disk cache. | 1613 // String which specifies where to store the disk cache. |
1606 const char kDiskCacheDir[] = "browser.disk_cache_dir"; | 1614 const char kDiskCacheDir[] = "browser.disk_cache_dir"; |
1607 // Pref name for the policy specifying the maximal cache size. | 1615 // Pref name for the policy specifying the maximal cache size. |
1608 const char kDiskCacheSize[] = "browser.disk_cache_size"; | 1616 const char kDiskCacheSize[] = "browser.disk_cache_size"; |
1609 // Pref name for the policy specifying the maximal media cache size. | 1617 // Pref name for the policy specifying the maximal media cache size. |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1724 | 1732 |
1725 // String that represents the recovery component last downloaded version. This | 1733 // String that represents the recovery component last downloaded version. This |
1726 // takes the usual 'a.b.c.d' notation. | 1734 // takes the usual 'a.b.c.d' notation. |
1727 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1735 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
1728 | 1736 |
1729 // String that stores the component updater last known state. This is used for | 1737 // String that stores the component updater last known state. This is used for |
1730 // troubleshooting. | 1738 // troubleshooting. |
1731 const char kComponentUpdaterState[] = "component_updater.state"; | 1739 const char kComponentUpdaterState[] = "component_updater.state"; |
1732 | 1740 |
1733 } // namespace prefs | 1741 } // namespace prefs |
OLD | NEW |