| 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 #include "content/public/common/content_switches.h" | 6 #include "content/public/common/content_switches.h" |
| 7 #include "media/media_features.h" | 7 #include "media/media_features.h" |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 528 | 528 |
| 529 // Enables WebGL extensions not yet approved by the community. | 529 // Enables WebGL extensions not yet approved by the community. |
| 530 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; | 530 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; |
| 531 | 531 |
| 532 // Enables WebGL rendering into a scanout buffer for overlay support. | 532 // Enables WebGL rendering into a scanout buffer for overlay support. |
| 533 const char kEnableWebGLImageChromium[] = "enable-webgl-image-chromium"; | 533 const char kEnableWebGLImageChromium[] = "enable-webgl-image-chromium"; |
| 534 | 534 |
| 535 // Enables interaction with virtual reality devices. | 535 // Enables interaction with virtual reality devices. |
| 536 const char kEnableWebVR[] = "enable-webvr"; | 536 const char kEnableWebVR[] = "enable-webvr"; |
| 537 | 537 |
| 538 // Enables experimental rendering optimizations for WebVR. |
| 539 const char kEnableWebVRExperimentalRendering[] = |
| 540 "enable-webvr-experimental-rendering"; |
| 541 |
| 538 // Enable rasterizer that writes directly to GPU memory associated with tiles. | 542 // Enable rasterizer that writes directly to GPU memory associated with tiles. |
| 539 const char kEnableZeroCopy[] = "enable-zero-copy"; | 543 const char kEnableZeroCopy[] = "enable-zero-copy"; |
| 540 | 544 |
| 541 // Explicitly allows additional ports using a comma-separated list of port | 545 // Explicitly allows additional ports using a comma-separated list of port |
| 542 // numbers. | 546 // numbers. |
| 543 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; | 547 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; |
| 544 | 548 |
| 545 // Handle to the shared memory segment containing field trial state that is to | 549 // Handle to the shared memory segment containing field trial state that is to |
| 546 // be shared between processes. The argument to this switch is the handle id | 550 // be shared between processes. The argument to this switch is the handle id |
| 547 // (pointer on Windows) as a string, followed by a comma, then the size of the | 551 // (pointer on Windows) as a string, followed by a comma, then the size of the |
| (...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1087 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1091 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1088 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1092 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1089 | 1093 |
| 1090 // Specifies the testcase used by the IPC fuzzer. | 1094 // Specifies the testcase used by the IPC fuzzer. |
| 1091 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1095 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1092 #endif | 1096 #endif |
| 1093 | 1097 |
| 1094 // Don't dump stuff here, follow the same order as the header. | 1098 // Don't dump stuff here, follow the same order as the header. |
| 1095 | 1099 |
| 1096 } // namespace switches | 1100 } // namespace switches |
| OLD | NEW |