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 "build/build_config.h" | 5 #include "build/build_config.h" |
6 #include "content/public/common/content_switches.h" | 6 #include "content/public/common/content_switches.h" |
7 | 7 |
8 namespace switches { | 8 namespace switches { |
9 | 9 |
10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
(...skipping 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1027 const char kDisableWin32kRendererLockDown[] = | 1027 const char kDisableWin32kRendererLockDown[] = |
1028 "disable-win32k-renderer-lockdown"; | 1028 "disable-win32k-renderer-lockdown"; |
1029 | 1029 |
1030 // Enables the Win32K process mitigation policy for certain PPAPI mime | 1030 // Enables the Win32K process mitigation policy for certain PPAPI mime |
1031 // types. Each mime type is separated by a comma. Specify * to enable | 1031 // types. Each mime type is separated by a comma. Specify * to enable |
1032 // the policy for all mime types. | 1032 // the policy for all mime types. |
1033 const char kEnableWin32kLockDownMimeTypes[] = | 1033 const char kEnableWin32kLockDownMimeTypes[] = |
1034 "enable-win32k-lockdown-mimetypes"; | 1034 "enable-win32k-lockdown-mimetypes"; |
1035 | 1035 |
1036 // Enables experimental hardware acceleration for VP8/VP9 video decoding. | 1036 // Enables experimental hardware acceleration for VP8/VP9 video decoding. |
1037 // 1=Intel Decoder only; 2=AMD Decoder only; 4=Microsofts decoder only; 7=all | |
nasko
2016/07/13 23:07:10
The actual code has "VPX_VENDOR_ALL = 0xff", shoul
| |
1037 const char kEnableAcceleratedVpxDecode[] = "enable-accelerated-vpx-decode"; | 1038 const char kEnableAcceleratedVpxDecode[] = "enable-accelerated-vpx-decode"; |
1038 | 1039 |
1039 // Enables H264 HW decode acceleration for WebRtc on Win 7. | 1040 // Enables H264 HW decode acceleration for WebRtc on Win 7. |
1040 const char kEnableWin7WebRtcHWH264Decoding[] = | 1041 const char kEnableWin7WebRtcHWH264Decoding[] = |
1041 "enable-win7-webrtc-hw-h264-decoding"; | 1042 "enable-win7-webrtc-hw-h264-decoding"; |
1042 | 1043 |
1043 // DirectWrite FontCache is shared by browser to renderers using shared memory. | 1044 // DirectWrite FontCache is shared by browser to renderers using shared memory. |
1044 // This switch allows us to pass the shared memory handle to the renderer. | 1045 // This switch allows us to pass the shared memory handle to the renderer. |
1045 const char kFontCacheSharedHandle[] = "font-cache-shared-handle"; | 1046 const char kFontCacheSharedHandle[] = "font-cache-shared-handle"; |
1046 | 1047 |
(...skipping 13 matching lines...) Expand all Loading... | |
1060 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1061 // the given directory. Used primarily to gather samples for IPC fuzzing. |
1061 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1062 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
1062 | 1063 |
1063 // Specifies the testcase used by the IPC fuzzer. | 1064 // Specifies the testcase used by the IPC fuzzer. |
1064 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1065 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
1065 #endif | 1066 #endif |
1066 | 1067 |
1067 // Don't dump stuff here, follow the same order as the header. | 1068 // Don't dump stuff here, follow the same order as the header. |
1068 | 1069 |
1069 } // namespace switches | 1070 } // namespace switches |
OLD | NEW |