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

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

Issue 9939011: Add an accessibility mode for editable text fields only. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments and rebased. Created 8 years, 8 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) 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 // 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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 213
214 // Enable gpu-accelerated 2d canvas. 214 // Enable gpu-accelerated 2d canvas.
215 const char kEnableAccelerated2dCanvas[] = "enable-accelerated-2d-canvas"; 215 const char kEnableAccelerated2dCanvas[] = "enable-accelerated-2d-canvas";
216 216
217 // Enable hardware accelerated page painting. 217 // Enable hardware accelerated page painting.
218 const char kEnableAcceleratedPainting[] = "enable-accelerated-painting"; 218 const char kEnableAcceleratedPainting[] = "enable-accelerated-painting";
219 219
220 // Enable gpu-accelerated SVG/W3C filters. 220 // Enable gpu-accelerated SVG/W3C filters.
221 const char kEnableAcceleratedFilters[] = "enable-accelerated-filters"; 221 const char kEnableAcceleratedFilters[] = "enable-accelerated-filters";
222 222
223 // Enables WebKit accessibility within the renderer process.
224 const char kEnableAccessibility[] = "enable-accessibility";
225
226 // Turns on extremely verbose logging of accessibility events. 223 // Turns on extremely verbose logging of accessibility events.
227 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging"; 224 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging";
228 225
229 // Turns on the browser plugin. 226 // Turns on the browser plugin.
230 const char kEnableBrowserPlugin[] = "enable-browser-plugin"; 227 const char kEnableBrowserPlugin[] = "enable-browser-plugin";
231 228
232 // Enables the creation of compositing layers for fixed position elements. 229 // Enables the creation of compositing layers for fixed position elements.
233 const char kEnableCompositingForFixedPosition[] = 230 const char kEnableCompositingForFixedPosition[] =
234 "enable-fixed-position-compositing"; 231 "enable-fixed-position-compositing";
235 232
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 extern const char kFlingTapSuppressMaxDown[] = "fling-tap-suppress-max-down"; 658 extern const char kFlingTapSuppressMaxDown[] = "fling-tap-suppress-max-down";
662 659
663 // Maximum time between mousedown and mouseup to be considered a tap. 660 // Maximum time between mousedown and mouseup to be considered a tap.
664 extern const char kFlingTapSuppressMaxGap[] = "fling-tap-suppress-max-gap"; 661 extern const char kFlingTapSuppressMaxGap[] = "fling-tap-suppress-max-gap";
665 662
666 // Forces usage of the test compositor. Needed to run ui tests on bots. 663 // Forces usage of the test compositor. Needed to run ui tests on bots.
667 extern const char kTestCompositor[] = "test-compositor"; 664 extern const char kTestCompositor[] = "test-compositor";
668 #endif 665 #endif
669 666
670 } // namespace switches 667 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698