| 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 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 const char kPluginsDisabledPluginsExceptions[] = | 656 const char kPluginsDisabledPluginsExceptions[] = |
| 657 "plugins.plugins_disabled_exceptions"; | 657 "plugins.plugins_disabled_exceptions"; |
| 658 | 658 |
| 659 // List pref containing names of plugins that are enabled by policy. | 659 // List pref containing names of plugins that are enabled by policy. |
| 660 const char kPluginsEnabledPlugins[] = "plugins.plugins_enabled"; | 660 const char kPluginsEnabledPlugins[] = "plugins.plugins_enabled"; |
| 661 | 661 |
| 662 // When first shipped, the pdf plugin will be disabled by default. When we | 662 // When first shipped, the pdf plugin will be disabled by default. When we |
| 663 // enable it by default, we'll want to do so only once. | 663 // enable it by default, we'll want to do so only once. |
| 664 const char kPluginsEnabledInternalPDF[] = "plugins.enabled_internal_pdf3"; | 664 const char kPluginsEnabledInternalPDF[] = "plugins.enabled_internal_pdf3"; |
| 665 | 665 |
| 666 // When first shipped, the nacl plugin will be disabled by default. When we |
| 667 // enable it by default, we'll want to do so only once. |
| 668 const char kPluginsEnabledNaCl[] = "plugins.enabled_nacl"; |
| 669 |
| 666 const char kPluginsShowSetReaderDefaultInfobar[] = | 670 const char kPluginsShowSetReaderDefaultInfobar[] = |
| 667 "plugins.show_set_reader_default"; | 671 "plugins.show_set_reader_default"; |
| 668 | 672 |
| 669 // Whether about:plugins is shown in the details mode or not. | 673 // Whether about:plugins is shown in the details mode or not. |
| 670 const char kPluginsShowDetails[] = "plugins.show_details"; | 674 const char kPluginsShowDetails[] = "plugins.show_details"; |
| 671 | 675 |
| 672 // Boolean that indicates whether outdated plugins are allowed or not. | 676 // Boolean that indicates whether outdated plugins are allowed or not. |
| 673 const char kPluginsAllowOutdated[] = "plugins.allow_outdated"; | 677 const char kPluginsAllowOutdated[] = "plugins.allow_outdated"; |
| 674 | 678 |
| 675 // Boolean that indicates whether plugins that require authorization should | 679 // Boolean that indicates whether plugins that require authorization should |
| (...skipping 896 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1572 // specified. | 1576 // specified. |
| 1573 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1577 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
| 1574 | 1578 |
| 1575 // Integers that specify the policy refresh rate for device- and user-policy in | 1579 // Integers that specify the policy refresh rate for device- and user-policy in |
| 1576 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1580 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
| 1577 // by the cloud policy subsystem. | 1581 // by the cloud policy subsystem. |
| 1578 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1582 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
| 1579 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1583 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
| 1580 | 1584 |
| 1581 } // namespace prefs | 1585 } // namespace prefs |
| OLD | NEW |