| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 1544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1555 // Whether there is a Flash version installed that supports clearing LSO data. | 1555 // Whether there is a Flash version installed that supports clearing LSO data. |
| 1556 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; | 1556 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; |
| 1557 | 1557 |
| 1558 // String which specifies where to store the disk cache. | 1558 // String which specifies where to store the disk cache. |
| 1559 const char kDiskCacheDir[] = "browser.disk_cache_dir"; | 1559 const char kDiskCacheDir[] = "browser.disk_cache_dir"; |
| 1560 // Pref name for the policy specifying the maximal cache size. | 1560 // Pref name for the policy specifying the maximal cache size. |
| 1561 const char kDiskCacheSize[] = "browser.disk_cache_size"; | 1561 const char kDiskCacheSize[] = "browser.disk_cache_size"; |
| 1562 // Pref name for the policy specifying the maximal media cache size. | 1562 // Pref name for the policy specifying the maximal media cache size. |
| 1563 const char kMediaCacheSize[] = "browser.media_cache_size"; | 1563 const char kMediaCacheSize[] = "browser.media_cache_size"; |
| 1564 | 1564 |
| 1565 const char kPluginFinderDbUpdate[] = "plugin_finder.last_update"; |
| 1566 const char kPluginFinderDbCache[] = "plugin_finder.cache"; |
| 1567 |
| 1565 // Specifies the release channel that the device should be locked to. | 1568 // Specifies the release channel that the device should be locked to. |
| 1566 // Possible values: "stable-channel", "beta-channel", "dev-channel", or an | 1569 // Possible values: "stable-channel", "beta-channel", "dev-channel", or an |
| 1567 // empty string, in which case the value will be ignored. | 1570 // empty string, in which case the value will be ignored. |
| 1568 // TODO(dubroy): This preference may not be necessary once | 1571 // TODO(dubroy): This preference may not be necessary once |
| 1569 // http://crosbug.com/17015 is implemented and the update engine can just | 1572 // http://crosbug.com/17015 is implemented and the update engine can just |
| 1570 // fetch the correct value from the policy. | 1573 // fetch the correct value from the policy. |
| 1571 const char kChromeOsReleaseChannel[] = "cros.system.releaseChannel"; | 1574 const char kChromeOsReleaseChannel[] = "cros.system.releaseChannel"; |
| 1572 | 1575 |
| 1573 // *************** SERVICE PREFS *************** | 1576 // *************** SERVICE PREFS *************** |
| 1574 // These are attached to the service process. | 1577 // These are attached to the service process. |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1677 | 1680 |
| 1678 // String that represents the recovery component last downloaded version. This | 1681 // String that represents the recovery component last downloaded version. This |
| 1679 // takes the usual 'a.b.c.d' notation. | 1682 // takes the usual 'a.b.c.d' notation. |
| 1680 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1683 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
| 1681 | 1684 |
| 1682 // String that stores the component updater last known state. This is used for | 1685 // String that stores the component updater last known state. This is used for |
| 1683 // troubleshooting. | 1686 // troubleshooting. |
| 1684 const char kComponentUpdaterState[] = "component_updater.state"; | 1687 const char kComponentUpdaterState[] = "component_updater.state"; |
| 1685 | 1688 |
| 1686 } // namespace prefs | 1689 } // namespace prefs |
| OLD | NEW |