| 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 901 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 912 // Disable the Legacy Window which corresponds to the size of the WebContents. | 912 // Disable the Legacy Window which corresponds to the size of the WebContents. |
| 913 const char kDisableLegacyIntermediateWindow[] = "disable-legacy-window"; | 913 const char kDisableLegacyIntermediateWindow[] = "disable-legacy-window"; |
| 914 | 914 |
| 915 // Enable the Win32K process mitigation policy for renderer processes which | 915 // Enable the Win32K process mitigation policy for renderer processes which |
| 916 // prevents them from invoking user32 and gdi32 system calls which enter | 916 // prevents them from invoking user32 and gdi32 system calls which enter |
| 917 // the kernel. This is only supported on Windows 8 and beyond. | 917 // the kernel. This is only supported on Windows 8 and beyond. |
| 918 const char kEnableWin32kRendererLockDown[] | 918 const char kEnableWin32kRendererLockDown[] |
| 919 = "enable_win32k_renderer_lockdown"; | 919 = "enable_win32k_renderer_lockdown"; |
| 920 #endif | 920 #endif |
| 921 | 921 |
| 922 // Will add kWaitForDebugger to every renderer processes. |
| 923 const char kWaitForDebuggerRenderer[] = "wait-for-debugger-renderer"; |
| 924 |
| 922 // Don't dump stuff here, follow the same order as the header. | 925 // Don't dump stuff here, follow the same order as the header. |
| 923 | 926 |
| 924 } // namespace switches | 927 } // namespace switches |
| OLD | NEW |