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 1006 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1017 const char kDisableWin32kRendererLockDown[] = | 1017 const char kDisableWin32kRendererLockDown[] = |
1018 "disable-win32k-renderer-lockdown"; | 1018 "disable-win32k-renderer-lockdown"; |
1019 | 1019 |
1020 // Enables the Win32K process mitigation policy for certain PPAPI mime | 1020 // Enables the Win32K process mitigation policy for certain PPAPI mime |
1021 // types. Each mime type is separated by a comma. Specify * to enable | 1021 // types. Each mime type is separated by a comma. Specify * to enable |
1022 // the policy for all mime types. | 1022 // the policy for all mime types. |
1023 const char kEnableWin32kLockDownMimeTypes[] = | 1023 const char kEnableWin32kLockDownMimeTypes[] = |
1024 "enable-win32k-lockdown-mimetypes"; | 1024 "enable-win32k-lockdown-mimetypes"; |
1025 | 1025 |
1026 // Enables experimental hardware acceleration for VP8/VP9 video decoding. | 1026 // Enables experimental hardware acceleration for VP8/VP9 video decoding. |
| 1027 // 1=Intel Decoder only; 2=AMD Decoder only; 3=both |
1027 const char kEnableAcceleratedVpxDecode[] = "enable-accelerated-vpx-decode"; | 1028 const char kEnableAcceleratedVpxDecode[] = "enable-accelerated-vpx-decode"; |
1028 | 1029 |
1029 // Enables H264 HW decode acceleration for WebRtc on Win 7. | 1030 // Enables H264 HW decode acceleration for WebRtc on Win 7. |
1030 const char kEnableWin7WebRtcHWH264Decoding[] = | 1031 const char kEnableWin7WebRtcHWH264Decoding[] = |
1031 "enable-win7-webrtc-hw-h264-decoding"; | 1032 "enable-win7-webrtc-hw-h264-decoding"; |
1032 | 1033 |
1033 // DirectWrite FontCache is shared by browser to renderers using shared memory. | 1034 // DirectWrite FontCache is shared by browser to renderers using shared memory. |
1034 // This switch allows us to pass the shared memory handle to the renderer. | 1035 // This switch allows us to pass the shared memory handle to the renderer. |
1035 const char kFontCacheSharedHandle[] = "font-cache-shared-handle"; | 1036 const char kFontCacheSharedHandle[] = "font-cache-shared-handle"; |
1036 | 1037 |
(...skipping 13 matching lines...) Expand all Loading... |
1050 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1051 // the given directory. Used primarily to gather samples for IPC fuzzing. |
1051 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1052 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
1052 | 1053 |
1053 // Specifies the testcase used by the IPC fuzzer. | 1054 // Specifies the testcase used by the IPC fuzzer. |
1054 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1055 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
1055 #endif | 1056 #endif |
1056 | 1057 |
1057 // Don't dump stuff here, follow the same order as the header. | 1058 // Don't dump stuff here, follow the same order as the header. |
1058 | 1059 |
1059 } // namespace switches | 1060 } // namespace switches |
OLD | NEW |