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