| 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 namespace prefs { | 7 namespace prefs { |
| 8 | 8 |
| 9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
| 10 // These are attached to the user profile | 10 // These are attached to the user profile |
| (...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 const char kPluginsDisabledPluginsExceptions[] = | 580 const char kPluginsDisabledPluginsExceptions[] = |
| 581 "plugins.plugins_disabled_exceptions"; | 581 "plugins.plugins_disabled_exceptions"; |
| 582 | 582 |
| 583 // List pref containing names of plugins that are enabled by policy. | 583 // List pref containing names of plugins that are enabled by policy. |
| 584 const char kPluginsEnabledPlugins[] = "plugins.plugins_enabled"; | 584 const char kPluginsEnabledPlugins[] = "plugins.plugins_enabled"; |
| 585 | 585 |
| 586 // When first shipped, the pdf plugin will be disabled by default. When we | 586 // When first shipped, the pdf plugin will be disabled by default. When we |
| 587 // enable it by default, we'll want to do so only once. | 587 // enable it by default, we'll want to do so only once. |
| 588 const char kPluginsEnabledInternalPDF[] = "plugins.enabled_internal_pdf3"; | 588 const char kPluginsEnabledInternalPDF[] = "plugins.enabled_internal_pdf3"; |
| 589 | 589 |
| 590 // When first shipped, the nacl plugin will be disabled by default. When we |
| 591 // enable it by default, we'll want to do so only once. |
| 592 const char kPluginsEnabledNaCl[] = "plugins.enabled_nacl"; |
| 593 |
| 590 const char kPluginsShowSetReaderDefaultInfobar[] = | 594 const char kPluginsShowSetReaderDefaultInfobar[] = |
| 591 "plugins.show_set_reader_default"; | 595 "plugins.show_set_reader_default"; |
| 592 | 596 |
| 593 // Whether about:plugins is shown in the details mode or not. | 597 // Whether about:plugins is shown in the details mode or not. |
| 594 const char kPluginsShowDetails[] = "plugins.show_details"; | 598 const char kPluginsShowDetails[] = "plugins.show_details"; |
| 595 | 599 |
| 596 // Boolean that indicates whether outdated plugins are allowed or not. | 600 // Boolean that indicates whether outdated plugins are allowed or not. |
| 597 const char kPluginsAllowOutdated[] = "plugins.allow_outdated"; | 601 const char kPluginsAllowOutdated[] = "plugins.allow_outdated"; |
| 598 | 602 |
| 599 // Boolean that indicates whether plugins that require authorization should | 603 // Boolean that indicates whether plugins that require authorization should |
| (...skipping 844 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1444 // Whether user-specified handlers for protocols and content types can be | 1448 // Whether user-specified handlers for protocols and content types can be |
| 1445 // specified. | 1449 // specified. |
| 1446 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1450 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
| 1447 | 1451 |
| 1448 // Integers that specify the policy refresh rate for device- and user-policy in | 1452 // Integers that specify the policy refresh rate for device- and user-policy in |
| 1449 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1453 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
| 1450 // by the cloud policy subsystem. | 1454 // by the cloud policy subsystem. |
| 1451 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1455 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
| 1452 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1456 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
| 1453 } // namespace prefs | 1457 } // namespace prefs |
| OLD | NEW |