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 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
485 | 485 |
486 // Enable the Vtune profiler support. | 486 // Enable the Vtune profiler support. |
487 const char kEnableVtune[] = "enable-vtune-support"; | 487 const char kEnableVtune[] = "enable-vtune-support"; |
488 | 488 |
489 // Enables WebGL extensions not yet approved by the community. | 489 // Enables WebGL extensions not yet approved by the community. |
490 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; | 490 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; |
491 | 491 |
492 // Enables WebGL rendering into a scanout buffer for overlay support. | 492 // Enables WebGL rendering into a scanout buffer for overlay support. |
493 const char kEnableWebGLImageChromium[] = "enable-webgl-image-chromium"; | 493 const char kEnableWebGLImageChromium[] = "enable-webgl-image-chromium"; |
494 | 494 |
| 495 // Enables interaction with virtual reality devices. |
| 496 const char kEnableWebVR[] = "enable-webvr"; |
| 497 |
495 // Enable rasterizer that writes directly to GPU memory associated with tiles. | 498 // Enable rasterizer that writes directly to GPU memory associated with tiles. |
496 const char kEnableZeroCopy[] = "enable-zero-copy"; | 499 const char kEnableZeroCopy[] = "enable-zero-copy"; |
497 | 500 |
498 // Load NPAPI plugins from the specified directory. | 501 // Load NPAPI plugins from the specified directory. |
499 const char kExtraPluginDir[] = "extra-plugin-dir"; | 502 const char kExtraPluginDir[] = "extra-plugin-dir"; |
500 | 503 |
501 // This option can be used to force field trials when testing changes locally. | 504 // This option can be used to force field trials when testing changes locally. |
502 // The argument is a list of name and value pairs, separated by slashes. If a | 505 // The argument is a list of name and value pairs, separated by slashes. If a |
503 // trial name is prefixed with an asterisk, that trial will start activated. | 506 // trial name is prefixed with an asterisk, that trial will start activated. |
504 // For example, the following argument defines two trials, with the second one | 507 // For example, the following argument defines two trials, with the second one |
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
981 const char kEnableNpapi[] = "enable-npapi"; | 984 const char kEnableNpapi[] = "enable-npapi"; |
982 | 985 |
983 #if defined(ENABLE_PLUGINS) | 986 #if defined(ENABLE_PLUGINS) |
984 // Enables the plugin power saver feature. | 987 // Enables the plugin power saver feature. |
985 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; | 988 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; |
986 #endif | 989 #endif |
987 | 990 |
988 // Don't dump stuff here, follow the same order as the header. | 991 // Don't dump stuff here, follow the same order as the header. |
989 | 992 |
990 } // namespace switches | 993 } // namespace switches |
OLD | NEW |