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