| 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 902 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 913 | 913 |
| 914 // When first shipped, the nacl plugin will be disabled by default. When we | 914 // When first shipped, the nacl plugin will be disabled by default. When we |
| 915 // enable it by default, we'll want to do so only once. | 915 // enable it by default, we'll want to do so only once. |
| 916 const char kPluginsEnabledNaCl[] = "plugins.enabled_nacl"; | 916 const char kPluginsEnabledNaCl[] = "plugins.enabled_nacl"; |
| 917 | 917 |
| 918 // When bundled NPAPI Flash is removed, if at that point it is enabled while | 918 // When bundled NPAPI Flash is removed, if at that point it is enabled while |
| 919 // Pepper Flash is disabled, we would like to turn on Pepper Flash. And we will | 919 // Pepper Flash is disabled, we would like to turn on Pepper Flash. And we will |
| 920 // want to do so only once. | 920 // want to do so only once. |
| 921 const char kPluginsMigratedToPepperFlash[] = "plugins.migrated_to_pepper_flash"; | 921 const char kPluginsMigratedToPepperFlash[] = "plugins.migrated_to_pepper_flash"; |
| 922 | 922 |
| 923 // In the early stage of component-updated PPAPI Flash, we did field trials in |
| 924 // which it was set to disabled by default. The corresponding settings item may |
| 925 // remain in some users' profiles. Currently it affects both the bundled and |
| 926 // component-updated PPAPI Flash (since the two share the same enable/disable |
| 927 // state). We want to remove this item to get those users to use PPAPI Flash. |
| 928 // We will want to do so only once. |
| 929 const char kPluginsRemovedOldComponentPepperFlashSettings[] = |
| 930 "plugins.removed_old_component_pepper_flash_settings"; |
| 931 |
| 923 #if !defined(OS_ANDROID) | 932 #if !defined(OS_ANDROID) |
| 924 // Whether about:plugins is shown in the details mode or not. | 933 // Whether about:plugins is shown in the details mode or not. |
| 925 const char kPluginsShowDetails[] = "plugins.show_details"; | 934 const char kPluginsShowDetails[] = "plugins.show_details"; |
| 926 #endif | 935 #endif |
| 927 | 936 |
| 928 // Boolean that indicates whether outdated plugins are allowed or not. | 937 // Boolean that indicates whether outdated plugins are allowed or not. |
| 929 const char kPluginsAllowOutdated[] = "plugins.allow_outdated"; | 938 const char kPluginsAllowOutdated[] = "plugins.allow_outdated"; |
| 930 | 939 |
| 931 // Boolean that indicates whether plugins that require authorization should | 940 // Boolean that indicates whether plugins that require authorization should |
| 932 // be always allowed or not. | 941 // be always allowed or not. |
| (...skipping 1272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2205 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2214 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2206 | 2215 |
| 2207 #if defined(OS_CHROMEOS) | 2216 #if defined(OS_CHROMEOS) |
| 2208 // The RLZ brand code, if enabled. | 2217 // The RLZ brand code, if enabled. |
| 2209 const char kRLZBrand[] = "rlz.brand"; | 2218 const char kRLZBrand[] = "rlz.brand"; |
| 2210 // Whether RLZ pings are disabled. | 2219 // Whether RLZ pings are disabled. |
| 2211 const char kRLZDisabled[] = "rlz.disabled"; | 2220 const char kRLZDisabled[] = "rlz.disabled"; |
| 2212 #endif | 2221 #endif |
| 2213 | 2222 |
| 2214 } // namespace prefs | 2223 } // namespace prefs |
| OLD | NEW |