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 "content/public/common/content_switches.h" | 5 #include "content/public/common/content_switches.h" |
6 | 6 |
7 namespace switches { | 7 namespace switches { |
8 | 8 |
9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
10 // have an effect. 0 disables MSAA. | 10 // have an effect. 0 disables MSAA. |
(...skipping 960 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
971 | 971 |
972 // DirectWrite FontCache is shared by browser to renderers using shared memory. | 972 // DirectWrite FontCache is shared by browser to renderers using shared memory. |
973 // This switch allows specifying suffix to shared memory section name to avoid | 973 // This switch allows specifying suffix to shared memory section name to avoid |
974 // clashes between different instances of Chrome. | 974 // clashes between different instances of Chrome. |
975 const char kFontCacheSharedMemSuffix[] = "font-cache-shared-mem-suffix"; | 975 const char kFontCacheSharedMemSuffix[] = "font-cache-shared-mem-suffix"; |
976 #endif | 976 #endif |
977 | 977 |
978 // Enables the use of NPAPI plugins. | 978 // Enables the use of NPAPI plugins. |
979 const char kEnableNpapi[] = "enable-npapi"; | 979 const char kEnableNpapi[] = "enable-npapi"; |
980 | 980 |
981 #if defined(ENABLE_PLUGINS) | |
982 // Enables the plugin power saver feature. | |
983 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; | |
984 #endif | |
985 | |
986 // Don't dump stuff here, follow the same order as the header. | 981 // Don't dump stuff here, follow the same order as the header. |
987 | 982 |
988 } // namespace switches | 983 } // namespace switches |
OLD | NEW |