| 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 #include "content/public/common/content_switches.h" | 6 #include "content/public/common/content_switches.h" |
| 7 | 7 |
| 8 namespace switches { | 8 namespace switches { |
| 9 | 9 |
| 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
| (...skipping 964 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 975 "disable-vaapi-accelerated-video-encode"; | 975 "disable-vaapi-accelerated-video-encode"; |
| 976 #endif | 976 #endif |
| 977 | 977 |
| 978 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 978 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 979 // Allows sending text-to-speech requests to speech-dispatcher, a common | 979 // Allows sending text-to-speech requests to speech-dispatcher, a common |
| 980 // Linux speech service. Because it's buggy, the user must explicitly | 980 // Linux speech service. Because it's buggy, the user must explicitly |
| 981 // enable it so that visiting a random webpage can't cause instability. | 981 // enable it so that visiting a random webpage can't cause instability. |
| 982 const char kEnableSpeechDispatcher[] = "enable-speech-dispatcher"; | 982 const char kEnableSpeechDispatcher[] = "enable-speech-dispatcher"; |
| 983 #endif | 983 #endif |
| 984 | 984 |
| 985 #if defined(OS_MACOSX) && !defined(OS_IOS) | 985 #if defined(OS_MACOSX) |
| 986 // Disables support for Core Animation plugins. This is triggered when | 986 // Disables support for Core Animation plugins. This is triggered when |
| 987 // accelerated compositing is disabled. See http://crbug.com/122430. | 987 // accelerated compositing is disabled. See http://crbug.com/122430. |
| 988 const char kDisableCoreAnimationPlugins[] = | 988 const char kDisableCoreAnimationPlugins[] = |
| 989 "disable-core-animation-plugins"; | 989 "disable-core-animation-plugins"; |
| 990 #endif | 990 #endif |
| 991 | 991 |
| 992 #if defined(OS_WIN) | 992 #if defined(OS_WIN) |
| 993 // /prefetch:# arguments to use when launching various process types. It has | 993 // /prefetch:# arguments to use when launching various process types. It has |
| 994 // been observed that when file reads are consistent for 3 process launches with | 994 // been observed that when file reads are consistent for 3 process launches with |
| 995 // the same /prefetch:# argument, the Windows prefetcher starts issuing reads in | 995 // the same /prefetch:# argument, the Windows prefetcher starts issuing reads in |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1044 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1044 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1045 | 1045 |
| 1046 // Enables the exporting of the tracing events to ETW. This is only supported on | 1046 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1047 // Windows Vista and later. | 1047 // Windows Vista and later. |
| 1048 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1048 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1049 #endif | 1049 #endif |
| 1050 | 1050 |
| 1051 // Don't dump stuff here, follow the same order as the header. | 1051 // Don't dump stuff here, follow the same order as the header. |
| 1052 | 1052 |
| 1053 } // namespace switches | 1053 } // namespace switches |
| OLD | NEW |