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 874 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
885 | 885 |
886 // Always use the video overlay for the embedded video. | 886 // Always use the video overlay for the embedded video. |
887 // This switch is intended only for tests. | 887 // This switch is intended only for tests. |
888 const char kForceUseOverlayEmbeddedVideo[] = "force-use-overlay-embedded-video"; | 888 const char kForceUseOverlayEmbeddedVideo[] = "force-use-overlay-embedded-video"; |
889 | 889 |
890 // The telephony region (ISO country code) to use in phone number detection. | 890 // The telephony region (ISO country code) to use in phone number detection. |
891 const char kNetworkCountryIso[] = "network-country-iso"; | 891 const char kNetworkCountryIso[] = "network-country-iso"; |
892 | 892 |
893 // Enables remote debug over HTTP on the specified socket name. | 893 // Enables remote debug over HTTP on the specified socket name. |
894 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; | 894 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; |
| 895 |
| 896 // Block ChildProcessMain thread of the renderer's ChildProcessService until a |
| 897 // Java debugger is attached. |
| 898 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; |
895 #endif | 899 #endif |
896 | 900 |
897 // Disable web audio API. | 901 // Disable web audio API. |
898 const char kDisableWebAudio[] = "disable-webaudio"; | 902 const char kDisableWebAudio[] = "disable-webaudio"; |
899 | 903 |
900 #if defined(OS_CHROMEOS) | 904 #if defined(OS_CHROMEOS) |
901 // Disables panel fitting (used for mirror mode). | 905 // Disables panel fitting (used for mirror mode). |
902 const char kDisablePanelFitting[] = "disable-panel-fitting"; | 906 const char kDisablePanelFitting[] = "disable-panel-fitting"; |
903 | 907 |
904 // Enables VA-API accelerated video encode. | 908 // Enables VA-API accelerated video encode. |
(...skipping 28 matching lines...) Expand all Loading... |
933 // Enable the Win32K process mitigation policy for renderer processes which | 937 // Enable the Win32K process mitigation policy for renderer processes which |
934 // prevents them from invoking user32 and gdi32 system calls which enter | 938 // prevents them from invoking user32 and gdi32 system calls which enter |
935 // the kernel. This is only supported on Windows 8 and beyond. | 939 // the kernel. This is only supported on Windows 8 and beyond. |
936 const char kEnableWin32kRendererLockDown[] | 940 const char kEnableWin32kRendererLockDown[] |
937 = "enable_win32k_renderer_lockdown"; | 941 = "enable_win32k_renderer_lockdown"; |
938 #endif | 942 #endif |
939 | 943 |
940 // Don't dump stuff here, follow the same order as the header. | 944 // Don't dump stuff here, follow the same order as the header. |
941 | 945 |
942 } // namespace switches | 946 } // namespace switches |
OLD | NEW |