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 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
992 // Windows Vista and later. | 995 // Windows Vista and later. |
993 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 996 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
994 #endif | 997 #endif |
995 | 998 |
996 // Enables the use of NPAPI plugins. | 999 // Enables the use of NPAPI plugins. |
997 const char kEnableNpapi[] = "enable-npapi"; | 1000 const char kEnableNpapi[] = "enable-npapi"; |
998 | 1001 |
999 // Don't dump stuff here, follow the same order as the header. | 1002 // Don't dump stuff here, follow the same order as the header. |
1000 | 1003 |
1001 } // namespace switches | 1004 } // namespace switches |
OLD | NEW |