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