| 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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 | 261 |
| 262 // Disable smooth scrolling for testing. | 262 // Disable smooth scrolling for testing. |
| 263 const char kDisableSmoothScrolling[] = "disable-smooth-scrolling"; | 263 const char kDisableSmoothScrolling[] = "disable-smooth-scrolling"; |
| 264 | 264 |
| 265 // Disables the use of a 3D software rasterizer. | 265 // Disables the use of a 3D software rasterizer. |
| 266 const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer"; | 266 const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer"; |
| 267 | 267 |
| 268 // Disables the Web Speech API. | 268 // Disables the Web Speech API. |
| 269 const char kDisableSpeechAPI[] = "disable-speech-api"; | 269 const char kDisableSpeechAPI[] = "disable-speech-api"; |
| 270 | 270 |
| 271 // Disables SVG 1.1 DOM. | |
| 272 const char kDisableSVG1DOM[] = "disable-svg1dom"; | |
| 273 | |
| 274 // Disable multithreaded GPU compositing of web content. | 271 // Disable multithreaded GPU compositing of web content. |
| 275 const char kDisableThreadedCompositing[] = "disable-threaded-compositing"; | 272 const char kDisableThreadedCompositing[] = "disable-threaded-compositing"; |
| 276 | 273 |
| 277 // Disable multithreaded, compositor scrolling of web content. | 274 // Disable multithreaded, compositor scrolling of web content. |
| 278 const char kDisableThreadedScrolling[] = "disable-threaded-scrolling"; | 275 const char kDisableThreadedScrolling[] = "disable-threaded-scrolling"; |
| 279 | 276 |
| 280 // Disable V8 idle tasks. | 277 // Disable V8 idle tasks. |
| 281 const char kDisableV8IdleTasks[] = "disable-v8-idle-tasks"; | 278 const char kDisableV8IdleTasks[] = "disable-v8-idle-tasks"; |
| 282 | 279 |
| 283 // Don't enforce the same-origin policy. (Used by people testing their sites.) | 280 // Don't enforce the same-origin policy. (Used by people testing their sites.) |
| (...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 984 // Windows Vista and later. | 981 // Windows Vista and later. |
| 985 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 982 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 986 #endif | 983 #endif |
| 987 | 984 |
| 988 // Enable the Mojo shell connection in renderers. | 985 // Enable the Mojo shell connection in renderers. |
| 989 const char kEnableMojoShellConnection[] = "enable-mojo-shell-connection"; | 986 const char kEnableMojoShellConnection[] = "enable-mojo-shell-connection"; |
| 990 | 987 |
| 991 // Don't dump stuff here, follow the same order as the header. | 988 // Don't dump stuff here, follow the same order as the header. |
| 992 | 989 |
| 993 } // namespace switches | 990 } // namespace switches |
| OLD | NEW |