| 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 | 7 |
| 8 namespace switches { | 8 namespace switches { |
| 9 | 9 |
| 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
| (...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 475 const char kEnableUseZoomForDSF[] = "enable-use-zoom-for-dsf"; | 475 const char kEnableUseZoomForDSF[] = "enable-use-zoom-for-dsf"; |
| 476 | 476 |
| 477 // Enables the use of the @viewport CSS rule, which allows | 477 // Enables the use of the @viewport CSS rule, which allows |
| 478 // pages to control aspects of their own layout. This also turns on touch-screen | 478 // pages to control aspects of their own layout. This also turns on touch-screen |
| 479 // pinch gestures. | 479 // pinch gestures. |
| 480 const char kEnableViewport[] = "enable-viewport"; | 480 const char kEnableViewport[] = "enable-viewport"; |
| 481 | 481 |
| 482 // Enable the Vtune profiler support. | 482 // Enable the Vtune profiler support. |
| 483 const char kEnableVtune[] = "enable-vtune-support"; | 483 const char kEnableVtune[] = "enable-vtune-support"; |
| 484 | 484 |
| 485 // Enable Vulkan support, must also have ENABLE_VULKAN defined. |
| 486 const char kEnableVulkan[] = "enable-vulkan"; |
| 487 |
| 485 // Enable WebFonts intervention and trigger the signal always. | 488 // Enable WebFonts intervention and trigger the signal always. |
| 486 const char kEnableWebFontsInterventionTrigger[] = | 489 const char kEnableWebFontsInterventionTrigger[] = |
| 487 "enable-webfonts-intervention-trigger"; | 490 "enable-webfonts-intervention-trigger"; |
| 488 | 491 |
| 489 // Enables WebGL extensions not yet approved by the community. | 492 // Enables WebGL extensions not yet approved by the community. |
| 490 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; | 493 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; |
| 491 | 494 |
| 492 // Enables WebGL rendering into a scanout buffer for overlay support. | 495 // Enables WebGL rendering into a scanout buffer for overlay support. |
| 493 const char kEnableWebGLImageChromium[] = "enable-webgl-image-chromium"; | 496 const char kEnableWebGLImageChromium[] = "enable-webgl-image-chromium"; |
| 494 | 497 |
| (...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1018 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1021 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1019 | 1022 |
| 1020 // Enables the exporting of the tracing events to ETW. This is only supported on | 1023 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1021 // Windows Vista and later. | 1024 // Windows Vista and later. |
| 1022 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1025 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1023 #endif | 1026 #endif |
| 1024 | 1027 |
| 1025 // Don't dump stuff here, follow the same order as the header. | 1028 // Don't dump stuff here, follow the same order as the header. |
| 1026 | 1029 |
| 1027 } // namespace switches | 1030 } // namespace switches |
| OLD | NEW |