| 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 1589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1600 // modulus, then it will retry auto-enrollment using the updated value. | 1600 // modulus, then it will retry auto-enrollment using the updated value. |
| 1601 const char kAutoEnrollmentPowerLimit[] = "AutoEnrollmentPowerLimit"; | 1601 const char kAutoEnrollmentPowerLimit[] = "AutoEnrollmentPowerLimit"; |
| 1602 | 1602 |
| 1603 // A boolean pref that indicates whether OS & firmware version info should be | 1603 // A boolean pref that indicates whether OS & firmware version info should be |
| 1604 // reported along with device policy requests. | 1604 // reported along with device policy requests. |
| 1605 const char kReportDeviceVersionInfo[] = "device_status.report_version_info"; | 1605 const char kReportDeviceVersionInfo[] = "device_status.report_version_info"; |
| 1606 | 1606 |
| 1607 // A boolean pref that indicates whether device activity times should be | 1607 // A boolean pref that indicates whether device activity times should be |
| 1608 // recorded and reported along with device policy requests. | 1608 // recorded and reported along with device policy requests. |
| 1609 const char kReportDeviceActivityTimes[] = "device_status.report_activity_times"; | 1609 const char kReportDeviceActivityTimes[] = "device_status.report_activity_times"; |
| 1610 |
| 1611 // The local state pref that stores device activity times before reporting |
| 1612 // them to the policy server. |
| 1613 extern const char kDeviceActivityTimes[] = "device_status.activity_times"; |
| 1610 #endif | 1614 #endif |
| 1611 | 1615 |
| 1612 // Whether there is a Flash version installed that supports clearing LSO data. | 1616 // Whether there is a Flash version installed that supports clearing LSO data. |
| 1613 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; | 1617 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; |
| 1614 | 1618 |
| 1615 // String which specifies where to store the disk cache. | 1619 // String which specifies where to store the disk cache. |
| 1616 const char kDiskCacheDir[] = "browser.disk_cache_dir"; | 1620 const char kDiskCacheDir[] = "browser.disk_cache_dir"; |
| 1617 // Pref name for the policy specifying the maximal cache size. | 1621 // Pref name for the policy specifying the maximal cache size. |
| 1618 const char kDiskCacheSize[] = "browser.disk_cache_size"; | 1622 const char kDiskCacheSize[] = "browser.disk_cache_size"; |
| 1619 // Pref name for the policy specifying the maximal media cache size. | 1623 // Pref name for the policy specifying the maximal media cache size. |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1738 | 1742 |
| 1739 // String that stores the component updater last known state. This is used for | 1743 // String that stores the component updater last known state. This is used for |
| 1740 // troubleshooting. | 1744 // troubleshooting. |
| 1741 const char kComponentUpdaterState[] = "component_updater.state"; | 1745 const char kComponentUpdaterState[] = "component_updater.state"; |
| 1742 | 1746 |
| 1743 // Boolean pref indicating whether the session restore dialog has been shown. | 1747 // Boolean pref indicating whether the session restore dialog has been shown. |
| 1744 const char kRestoreSessionStateDialogShown[] = | 1748 const char kRestoreSessionStateDialogShown[] = |
| 1745 "restore_session_state.dialog_shown"; | 1749 "restore_session_state.dialog_shown"; |
| 1746 | 1750 |
| 1747 } // namespace prefs | 1751 } // namespace prefs |
| OLD | NEW |