Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(27)

Side by Side Diff: content/public/common/content_switches.cc

Issue 1505903002: Don't require expectations file for DumpAccessibility tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Suppress lsan Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/test/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698