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

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

Issue 7745035: Add a big grab bag of missing web accessibility functionality... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 4 months 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/common/content_switches.h" 5 #include "content/common/content_switches.h"
6 6
7 namespace switches { 7 namespace switches {
8 8
9 // By default, file:// URIs cannot read other file:// URIs. This is an 9 // By default, file:// URIs cannot read other file:// URIs. This is an
10 // override for developers who need the old behavior for testing. 10 // override for developers who need the old behavior for testing.
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 // SKIA_GPU flag, which can be enabled by setting use_skia_gpu variable to 1 152 // SKIA_GPU flag, which can be enabled by setting use_skia_gpu variable to 1
153 // in build/features_override.gypi. 153 // in build/features_override.gypi.
154 const char kEnableAcceleratedDrawing[] = "enable-accelerated-drawing"; 154 const char kEnableAcceleratedDrawing[] = "enable-accelerated-drawing";
155 155
156 // Enables the hardware acceleration of plugins. 156 // Enables the hardware acceleration of plugins.
157 const char kEnableAcceleratedPlugins[] = "enable-accelerated-plugins"; 157 const char kEnableAcceleratedPlugins[] = "enable-accelerated-plugins";
158 158
159 // Enables WebKit accessibility within the renderer process. 159 // Enables WebKit accessibility within the renderer process.
160 const char kEnableAccessibility[] = "enable-accessibility"; 160 const char kEnableAccessibility[] = "enable-accessibility";
161 161
162 // Turns on extremely verbose logging of accessibility events.
163 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging";
164
162 // Enables the benchmarking extensions. 165 // Enables the benchmarking extensions.
163 const char kEnableBenchmarking[] = "enable-benchmarking"; 166 const char kEnableBenchmarking[] = "enable-benchmarking";
164 167
165 // Enables device motion events. 168 // Enables device motion events.
166 const char kEnableDeviceMotion[] = "enable-device-motion"; 169 const char kEnableDeviceMotion[] = "enable-device-motion";
167 170
168 // Enable the GPU plugin and Pepper 3D rendering. 171 // Enable the GPU plugin and Pepper 3D rendering.
169 const char kEnableGPUPlugin[] = "enable-gpu-plugin"; 172 const char kEnableGPUPlugin[] = "enable-gpu-plugin";
170 173
171 // Force logging to be enabled. Logging is disabled by default in release 174 // Force logging to be enabled. Logging is disabled by default in release
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
475 // Specify the amount the trackpad should scroll by. 478 // Specify the amount the trackpad should scroll by.
476 const char kScrollPixels[] = "scroll-pixels"; 479 const char kScrollPixels[] = "scroll-pixels";
477 #endif 480 #endif
478 481
479 #if !defined(OFFICIAL_BUILD) 482 #if !defined(OFFICIAL_BUILD)
480 // Causes the renderer process to throw an assertion on launch. 483 // Causes the renderer process to throw an assertion on launch.
481 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; 484 const char kRendererCheckFalseTest[] = "renderer-check-false-test";
482 #endif 485 #endif
483 486
484 } // namespace switches 487 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698