| 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 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 | 494 |
| 495 // Enable the Vtune profiler support. | 495 // Enable the Vtune profiler support. |
| 496 const char kEnableVtune[] = "enable-vtune-support"; | 496 const char kEnableVtune[] = "enable-vtune-support"; |
| 497 | 497 |
| 498 // Enables WebGL extensions not yet approved by the community. | 498 // Enables WebGL extensions not yet approved by the community. |
| 499 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; | 499 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; |
| 500 | 500 |
| 501 // Enables WebGL rendering into a scanout buffer for overlay support. | 501 // Enables WebGL rendering into a scanout buffer for overlay support. |
| 502 const char kEnableWebGLImageChromium[] = "enable-webgl-image-chromium"; | 502 const char kEnableWebGLImageChromium[] = "enable-webgl-image-chromium"; |
| 503 | 503 |
| 504 // Enables interaction with virtual reality devices. |
| 505 const char kEnableWebVR[] = "enable-webvr"; |
| 506 |
| 504 // Enable rasterizer that writes directly to GPU memory associated with tiles. | 507 // Enable rasterizer that writes directly to GPU memory associated with tiles. |
| 505 const char kEnableZeroCopy[] = "enable-zero-copy"; | 508 const char kEnableZeroCopy[] = "enable-zero-copy"; |
| 506 | 509 |
| 507 // Explicitly allows additional ports using a comma-separated list of port | 510 // Explicitly allows additional ports using a comma-separated list of port |
| 508 // numbers. | 511 // numbers. |
| 509 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; | 512 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; |
| 510 | 513 |
| 511 // Load NPAPI plugins from the specified directory. | 514 // Load NPAPI plugins from the specified directory. |
| 512 const char kExtraPluginDir[] = "extra-plugin-dir"; | 515 const char kExtraPluginDir[] = "extra-plugin-dir"; |
| 513 | 516 |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 999 // Windows Vista and later. | 1002 // Windows Vista and later. |
| 1000 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1003 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1001 #endif | 1004 #endif |
| 1002 | 1005 |
| 1003 // Enables the use of NPAPI plugins. | 1006 // Enables the use of NPAPI plugins. |
| 1004 const char kEnableNpapi[] = "enable-npapi"; | 1007 const char kEnableNpapi[] = "enable-npapi"; |
| 1005 | 1008 |
| 1006 // Don't dump stuff here, follow the same order as the header. | 1009 // Don't dump stuff here, follow the same order as the header. |
| 1007 | 1010 |
| 1008 } // namespace switches | 1011 } // namespace switches |
| OLD | NEW |