diff options
author | zork@chromium.org <zork@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-05 03:13:09 +0000 |
---|---|---|
committer | zork@chromium.org <zork@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-05 03:13:09 +0000 |
commit | 487ba146b8f27e123863ac28070ec675690772c6 (patch) | |
tree | 5ed0a423ec0acc1c8f89fd08530e105d328bbedf /chrome/common/pref_names.cc | |
parent | 5647895bce1ebfe89fa0367078cf0b09cedb25c2 (diff) | |
download | chromium_src-487ba146b8f27e123863ac28070ec675690772c6.zip chromium_src-487ba146b8f27e123863ac28070ec675690772c6.tar.gz chromium_src-487ba146b8f27e123863ac28070ec675690772c6.tar.bz2 |
Add stubs to options menu for additional accessibility features
R=dmazzoni@chromium.org
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/8932002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116447 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/pref_names.cc')
-rw-r--r-- | chrome/common/pref_names.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index 89e31f5..38cac80 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -609,6 +609,12 @@ const char kLanguagePreferredVirtualKeyboard[] = // A boolean pref which determines whether spoken feedback is enabled. const char kSpokenFeedbackEnabled[] = "settings.accessibility"; +// A boolean pref which determines whether high conrast is enabled. +const char kHighContrastEnabled[] = "settings.a11y.high_contrast"; +// A boolean pref which determines whether screen magnifier is enabled. +const char kScreenMagnifierEnabled[] = "settings.a11y.screen_magnifier"; +// A boolean pref which determines whether virtual keyboard is enabled. +const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard"; // A boolean pref which turns on Advanced Filesystem // (USB support, SD card, etc). |