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 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
512 | 512 |
513 // Forces use of hardware overlay for fullscreen video playback. Useful for | 513 // Forces use of hardware overlay for fullscreen video playback. Useful for |
514 // testing the Android overlay fullscreen functionality on other platforms. | 514 // testing the Android overlay fullscreen functionality on other platforms. |
515 const char kForceOverlayFullscreenVideo[] = "force-overlay-fullscreen-video"; | 515 const char kForceOverlayFullscreenVideo[] = "force-overlay-fullscreen-video"; |
516 | 516 |
517 // Force renderer accessibility to be on instead of enabling it on demand when | 517 // Force renderer accessibility to be on instead of enabling it on demand when |
518 // a screen reader is detected. The disable-renderer-accessibility switch | 518 // a screen reader is detected. The disable-renderer-accessibility switch |
519 // overrides this if present. | 519 // overrides this if present. |
520 const char kForceRendererAccessibility[] = "force-renderer-accessibility"; | 520 const char kForceRendererAccessibility[] = "force-renderer-accessibility"; |
521 | 521 |
| 522 // For development / testing only. When running content_browsertests, |
| 523 // saves output of failing accessibility tests to their expectations files in |
| 524 // content/test/data/accessibility/, overwriting existing file content. |
| 525 const char kGenerateAccessibilityTestExpectations[] = |
| 526 "generate-accessibility-test-expectations"; |
| 527 |
522 // Passes gpu device_id from browser process to GPU process. | 528 // Passes gpu device_id from browser process to GPU process. |
523 const char kGpuDeviceID[] = "gpu-device-id"; | 529 const char kGpuDeviceID[] = "gpu-device-id"; |
524 | 530 |
525 // Passes gpu driver_vendor from browser process to GPU process. | 531 // Passes gpu driver_vendor from browser process to GPU process. |
526 const char kGpuDriverVendor[] = "gpu-driver-vendor"; | 532 const char kGpuDriverVendor[] = "gpu-driver-vendor"; |
527 | 533 |
528 // Passes gpu driver_version from browser process to GPU process. | 534 // Passes gpu driver_version from browser process to GPU process. |
529 const char kGpuDriverVersion[] = "gpu-driver-version"; | 535 const char kGpuDriverVersion[] = "gpu-driver-version"; |
530 | 536 |
531 // Extra command line options for launching the GPU process (normally used | 537 // Extra command line options for launching the GPU process (normally used |
(...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
984 // Windows Vista and later. | 990 // Windows Vista and later. |
985 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 991 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
986 #endif | 992 #endif |
987 | 993 |
988 // Enable the Mojo shell connection in renderers. | 994 // Enable the Mojo shell connection in renderers. |
989 const char kEnableMojoShellConnection[] = "enable-mojo-shell-connection"; | 995 const char kEnableMojoShellConnection[] = "enable-mojo-shell-connection"; |
990 | 996 |
991 // Don't dump stuff here, follow the same order as the header. | 997 // Don't dump stuff here, follow the same order as the header. |
992 | 998 |
993 } // namespace switches | 999 } // namespace switches |
OLD | NEW |