| 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 957 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 968 // which enter the kernel. This is only supported on Windows 8 and beyond. | 968 // which enter the kernel. This is only supported on Windows 8 and beyond. |
| 969 const char kDisableWin32kRendererLockDown[] = | 969 const char kDisableWin32kRendererLockDown[] = |
| 970 "disable-win32k-renderer-lockdown"; | 970 "disable-win32k-renderer-lockdown"; |
| 971 const char kEnableWin32kRendererLockDown[] = | 971 const char kEnableWin32kRendererLockDown[] = |
| 972 "enable-win32k-renderer-lockdown"; | 972 "enable-win32k-renderer-lockdown"; |
| 973 | 973 |
| 974 // DirectWrite FontCache is shared by browser to renderers using shared memory. | 974 // DirectWrite FontCache is shared by browser to renderers using shared memory. |
| 975 // This switch allows specifying suffix to shared memory section name to avoid | 975 // This switch allows specifying suffix to shared memory section name to avoid |
| 976 // clashes between different instances of Chrome. | 976 // clashes between different instances of Chrome. |
| 977 const char kFontCacheSharedMemSuffix[] = "font-cache-shared-mem-suffix"; | 977 const char kFontCacheSharedMemSuffix[] = "font-cache-shared-mem-suffix"; |
| 978 |
| 979 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 980 // Windows Vista and later. |
| 981 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 978 #endif | 982 #endif |
| 979 | 983 |
| 980 // Enables the use of NPAPI plugins. | 984 // Enables the use of NPAPI plugins. |
| 981 const char kEnableNpapi[] = "enable-npapi"; | 985 const char kEnableNpapi[] = "enable-npapi"; |
| 982 | 986 |
| 983 #if defined(ENABLE_PLUGINS) | 987 #if defined(ENABLE_PLUGINS) |
| 984 // Enables the plugin power saver feature. | 988 // Enables the plugin power saver feature. |
| 985 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; | 989 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; |
| 986 #endif | 990 #endif |
| 987 | 991 |
| 988 // Don't dump stuff here, follow the same order as the header. | 992 // Don't dump stuff here, follow the same order as the header. |
| 989 | 993 |
| 990 } // namespace switches | 994 } // namespace switches |
| OLD | NEW |