| 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 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 | 470 |
| 471 // Enable the Vtune profiler support. | 471 // Enable the Vtune profiler support. |
| 472 const char kEnableVtune[] = "enable-vtune-support"; | 472 const char kEnableVtune[] = "enable-vtune-support"; |
| 473 | 473 |
| 474 // Enables WebGL extensions not yet approved by the community. | 474 // Enables WebGL extensions not yet approved by the community. |
| 475 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; | 475 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; |
| 476 | 476 |
| 477 // Enables WebGL rendering into a scanout buffer for overlay support. | 477 // Enables WebGL rendering into a scanout buffer for overlay support. |
| 478 const char kEnableWebGLImageChromium[] = "enable-webgl-image-chromium"; | 478 const char kEnableWebGLImageChromium[] = "enable-webgl-image-chromium"; |
| 479 | 479 |
| 480 // Enables interaction with virtual reality devices. |
| 481 const char kEnableWebVR[] = "enable-webvr"; |
| 482 |
| 480 // Enable rasterizer that writes directly to GPU memory associated with tiles. | 483 // Enable rasterizer that writes directly to GPU memory associated with tiles. |
| 481 const char kEnableZeroCopy[] = "enable-zero-copy"; | 484 const char kEnableZeroCopy[] = "enable-zero-copy"; |
| 482 | 485 |
| 483 // Explicitly allows additional ports using a comma-separated list of port | 486 // Explicitly allows additional ports using a comma-separated list of port |
| 484 // numbers. | 487 // numbers. |
| 485 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; | 488 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; |
| 486 | 489 |
| 487 // Load NPAPI plugins from the specified directory. | 490 // Load NPAPI plugins from the specified directory. |
| 488 const char kExtraPluginDir[] = "extra-plugin-dir"; | 491 const char kExtraPluginDir[] = "extra-plugin-dir"; |
| 489 | 492 |
| (...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 994 // Windows Vista and later. | 997 // Windows Vista and later. |
| 995 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 998 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 996 #endif | 999 #endif |
| 997 | 1000 |
| 998 // Enables the use of NPAPI plugins. | 1001 // Enables the use of NPAPI plugins. |
| 999 const char kEnableNpapiForTesting[] = "enable-npapi-for-testing"; | 1002 const char kEnableNpapiForTesting[] = "enable-npapi-for-testing"; |
| 1000 | 1003 |
| 1001 // Don't dump stuff here, follow the same order as the header. | 1004 // Don't dump stuff here, follow the same order as the header. |
| 1002 | 1005 |
| 1003 } // namespace switches | 1006 } // namespace switches |
| OLD | NEW |