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 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 | 8 |
9 namespace switches { | 9 namespace switches { |
10 | 10 |
(...skipping 910 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
921 | 921 |
922 // Always use the video overlay for the embedded video. | 922 // Always use the video overlay for the embedded video. |
923 // This switch is intended only for tests. | 923 // This switch is intended only for tests. |
924 const char kForceUseOverlayEmbeddedVideo[] = "force-use-overlay-embedded-video"; | 924 const char kForceUseOverlayEmbeddedVideo[] = "force-use-overlay-embedded-video"; |
925 | 925 |
926 // The telephony region (ISO country code) to use in phone number detection. | 926 // The telephony region (ISO country code) to use in phone number detection. |
927 const char kNetworkCountryIso[] = "network-country-iso"; | 927 const char kNetworkCountryIso[] = "network-country-iso"; |
928 | 928 |
929 // Enables remote debug over HTTP on the specified socket name. | 929 // Enables remote debug over HTTP on the specified socket name. |
930 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; | 930 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; |
| 931 |
| 932 // Java-only switch: ContentSwitches.ENABLE_ACCESSIBILITY_SCRIPT_INJECTION. |
| 933 const char kEnableAccessibilityScriptInjection[] = |
| 934 "enable-accessibility-script-injection"; |
931 #endif | 935 #endif |
932 | 936 |
933 // Disable web audio API. | 937 // Disable web audio API. |
934 const char kDisableWebAudio[] = "disable-webaudio"; | 938 const char kDisableWebAudio[] = "disable-webaudio"; |
935 | 939 |
936 #if defined(OS_CHROMEOS) | 940 #if defined(OS_CHROMEOS) |
937 // Disables panel fitting (used for mirror mode). | 941 // Disables panel fitting (used for mirror mode). |
938 const char kDisablePanelFitting[] = "disable-panel-fitting"; | 942 const char kDisablePanelFitting[] = "disable-panel-fitting"; |
939 #endif | 943 #endif |
940 | 944 |
(...skipping 22 matching lines...) Expand all Loading... |
963 // Enable the Win32K process mitigation policy for renderer processes which | 967 // Enable the Win32K process mitigation policy for renderer processes which |
964 // prevents them from invoking user32 and gdi32 system calls which enter | 968 // prevents them from invoking user32 and gdi32 system calls which enter |
965 // the kernel. This is only supported on Windows 8 and beyond. | 969 // the kernel. This is only supported on Windows 8 and beyond. |
966 const char kEnableWin32kRendererLockDown[] | 970 const char kEnableWin32kRendererLockDown[] |
967 = "enable_win32k_renderer_lockdown"; | 971 = "enable_win32k_renderer_lockdown"; |
968 #endif | 972 #endif |
969 | 973 |
970 // Don't dump stuff here, follow the same order as the header. | 974 // Don't dump stuff here, follow the same order as the header. |
971 | 975 |
972 } // namespace switches | 976 } // namespace switches |
OLD | NEW |