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 namespace switches { | 7 namespace switches { |
8 | 8 |
9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
10 // have an effect. 0 disables MSAA. | 10 // have an effect. 0 disables MSAA. |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 // Disables usage of the namespace sandbox. | 186 // Disables usage of the namespace sandbox. |
187 const char kDisableNamespaceSandbox[] = "disable-namespace-sandbox"; | 187 const char kDisableNamespaceSandbox[] = "disable-namespace-sandbox"; |
188 | 188 |
189 // Disables native GPU memory buffer support. | 189 // Disables native GPU memory buffer support. |
190 const char kDisableNativeGpuMemoryBuffers[] = | 190 const char kDisableNativeGpuMemoryBuffers[] = |
191 "disable-native-gpu-memory-buffers"; | 191 "disable-native-gpu-memory-buffers"; |
192 | 192 |
193 // Disables the Web Notification and the Push APIs. | 193 // Disables the Web Notification and the Push APIs. |
194 const char kDisableNotifications[] = "disable-notifications"; | 194 const char kDisableNotifications[] = "disable-notifications"; |
195 | 195 |
196 // Disable rasterizer that writes directly to GPU memory. | |
197 const char kDisableOneCopy[] = "disable-one-copy"; | |
198 | |
199 // Disable Pepper3D. | 196 // Disable Pepper3D. |
200 const char kDisablePepper3d[] = "disable-pepper-3d"; | 197 const char kDisablePepper3d[] = "disable-pepper-3d"; |
201 | 198 |
202 // Disables the Permissions API. | 199 // Disables the Permissions API. |
203 const char kDisablePermissionsAPI[] = "disable-permissions-api"; | 200 const char kDisablePermissionsAPI[] = "disable-permissions-api"; |
204 | 201 |
205 // Disables compositor-accelerated touch-screen pinch gestures. | 202 // Disables compositor-accelerated touch-screen pinch gestures. |
206 const char kDisablePinch[] = "disable-pinch"; | 203 const char kDisablePinch[] = "disable-pinch"; |
207 | 204 |
208 // Disable discovering third-party plugins. Effectively loading only | 205 // Disable discovering third-party plugins. Effectively loading only |
(...skipping 798 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1007 // Windows Vista and later. | 1004 // Windows Vista and later. |
1008 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1005 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
1009 #endif | 1006 #endif |
1010 | 1007 |
1011 // Enables the use of NPAPI plugins. | 1008 // Enables the use of NPAPI plugins. |
1012 const char kEnableNpapiForTesting[] = "enable-npapi-for-testing"; | 1009 const char kEnableNpapiForTesting[] = "enable-npapi-for-testing"; |
1013 | 1010 |
1014 // Don't dump stuff here, follow the same order as the header. | 1011 // Don't dump stuff here, follow the same order as the header. |
1015 | 1012 |
1016 } // namespace switches | 1013 } // namespace switches |
OLD | NEW |