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 911 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
922 #endif | 922 #endif |
923 | 923 |
924 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 924 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
925 // Allows sending text-to-speech requests to speech-dispatcher, a common | 925 // Allows sending text-to-speech requests to speech-dispatcher, a common |
926 // Linux speech service. Because it's buggy, the user must explicitly | 926 // Linux speech service. Because it's buggy, the user must explicitly |
927 // enable it so that visiting a random webpage can't cause instability. | 927 // enable it so that visiting a random webpage can't cause instability. |
928 const char kEnableSpeechDispatcher[] = "enable-speech-dispatcher"; | 928 const char kEnableSpeechDispatcher[] = "enable-speech-dispatcher"; |
929 #endif | 929 #endif |
930 | 930 |
931 #if defined(OS_MACOSX) && !defined(OS_IOS) | 931 #if defined(OS_MACOSX) && !defined(OS_IOS) |
| 932 // Disables the bootstrap sandbox entirely. |
| 933 const char kDisableBootstrapSandbox[] = "disable-bootstrap-sandbox"; |
| 934 |
932 // Disables support for Core Animation plugins. This is triggered when | 935 // Disables support for Core Animation plugins. This is triggered when |
933 // accelerated compositing is disabled. See http://crbug.com/122430. | 936 // accelerated compositing is disabled. See http://crbug.com/122430. |
934 const char kDisableCoreAnimationPlugins[] = | 937 const char kDisableCoreAnimationPlugins[] = |
935 "disable-core-animation-plugins"; | 938 "disable-core-animation-plugins"; |
936 #endif | 939 #endif |
937 | 940 |
938 #if defined(OS_WIN) | 941 #if defined(OS_WIN) |
939 // Device scale factor passed to certain processes like renderers, etc. | 942 // Device scale factor passed to certain processes like renderers, etc. |
940 const char kDeviceScaleFactor[] = "device-scale-factor"; | 943 const char kDeviceScaleFactor[] = "device-scale-factor"; |
941 | 944 |
(...skipping 24 matching lines...) Expand all Loading... |
966 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 969 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
967 | 970 |
968 // Enables the exporting of the tracing events to ETW. This is only supported on | 971 // Enables the exporting of the tracing events to ETW. This is only supported on |
969 // Windows Vista and later. | 972 // Windows Vista and later. |
970 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 973 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
971 #endif | 974 #endif |
972 | 975 |
973 // Don't dump stuff here, follow the same order as the header. | 976 // Don't dump stuff here, follow the same order as the header. |
974 | 977 |
975 } // namespace switches | 978 } // namespace switches |
OLD | NEW |