Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(688)

Side by Side Diff: content/public/common/content_switches.cc

Issue 511683003: Add a flag to let render process wait for java debugger (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename a flag to RENDERER_WAIT_FOR_JAVA_DEBUGGER Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 render process service until a Java debugger
Charlie Reis 2014/08/28 16:38:37 render process service -> the renderer's ChildProc
Jaekyun Seok (inactive) 2014/08/28 23:41:16 Done.
897 // is attached.
898 const char kRendererWainForJavaDebugger[] = "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
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
OLDNEW
« content/public/common/content_switches.h ('K') | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698