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

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, 3 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
« no previous file with comments | « content/common/content_switches.h ('k') | content/common/view_messages.h » ('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) 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 152
153 // Enable hardware accelerated page drawing. 153 // Enable hardware accelerated page drawing.
154 // Please note that this flag is honored only if chromium is compiled with 154 // Please note that this flag is honored only if chromium is compiled with
155 // SKIA_GPU flag, which can be enabled by setting use_skia_gpu variable to 1 155 // SKIA_GPU flag, which can be enabled by setting use_skia_gpu variable to 1
156 // in build/features_override.gypi. 156 // in build/features_override.gypi.
157 const char kEnableAcceleratedDrawing[] = "enable-accelerated-drawing"; 157 const char kEnableAcceleratedDrawing[] = "enable-accelerated-drawing";
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 JavaScript Full Screen API. 171 // Enable the JavaScript Full Screen API.
169 const char kEnableFullScreen[] = "enable-fullscreen"; 172 const char kEnableFullScreen[] = "enable-fullscreen";
170 173
171 // Enable the GPU plugin and Pepper 3D rendering. 174 // Enable the GPU plugin and Pepper 3D rendering.
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
473 // Specify the amount the trackpad should scroll by. 476 // Specify the amount the trackpad should scroll by.
474 const char kScrollPixels[] = "scroll-pixels"; 477 const char kScrollPixels[] = "scroll-pixels";
475 #endif 478 #endif
476 479
477 #if !defined(OFFICIAL_BUILD) 480 #if !defined(OFFICIAL_BUILD)
478 // Causes the renderer process to throw an assertion on launch. 481 // Causes the renderer process to throw an assertion on launch.
479 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; 482 const char kRendererCheckFalseTest[] = "renderer-check-false-test";
480 #endif 483 #endif
481 484
482 } // namespace switches 485 } // namespace switches
OLDNEW
« no previous file with comments | « content/common/content_switches.h ('k') | content/common/view_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698