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

Side by Side Diff: chrome/common/pref_names.cc

Issue 11642014: Re-introduce the partial magnifier (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review fix (comment #8) Created 7 years, 11 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 "chrome/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 8
9 namespace prefs { 9 namespace prefs {
10 10
(...skipping 720 matching lines...) Expand 10 before | Expand all | Expand 10 after
731 "settings.language.xkb_auto_repeat_interval_r2"; 731 "settings.language.xkb_auto_repeat_interval_r2";
732 // "_r2" suffixes are added to the three prefs above when we change the 732 // "_r2" suffixes are added to the three prefs above when we change the
733 // preferences not user-configurable, not to sync them with cloud. 733 // preferences not user-configurable, not to sync them with cloud.
734 734
735 // A boolean pref which determines whether spoken feedback is enabled. 735 // A boolean pref which determines whether spoken feedback is enabled.
736 const char kSpokenFeedbackEnabled[] = "settings.accessibility"; 736 const char kSpokenFeedbackEnabled[] = "settings.accessibility";
737 // A boolean pref which determines whether high conrast is enabled. 737 // A boolean pref which determines whether high conrast is enabled.
738 const char kHighContrastEnabled[] = "settings.a11y.high_contrast_enabled"; 738 const char kHighContrastEnabled[] = "settings.a11y.high_contrast_enabled";
739 // A boolean pref which determines whether screen magnifier is enabled. 739 // A boolean pref which determines whether screen magnifier is enabled.
740 const char kScreenMagnifierEnabled[] = "settings.a11y.screen_magnifier"; 740 const char kScreenMagnifierEnabled[] = "settings.a11y.screen_magnifier";
741 // A integer pref which determines what type of screen magnifier is enabled.
742 // Note that: 'screen_magnifier_type' had been used as string pref. Hence,
743 // we are using another name pref here.
744 const char kScreenMagnifierType[] = "settings.a11y.screen_magnifier_type2";
741 // A double pref which determines a zooming scale of the screen magnifier. 745 // A double pref which determines a zooming scale of the screen magnifier.
742 const char kScreenMagnifierScale[] = "settings.a11y.screen_magnifier_scale"; 746 const char kScreenMagnifierScale[] = "settings.a11y.screen_magnifier_scale";
743 // A boolean pref which determines whether virtual keyboard is enabled. 747 // A boolean pref which determines whether virtual keyboard is enabled.
744 // TODO(hashimoto): Remove this pref. 748 // TODO(hashimoto): Remove this pref.
745 const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard"; 749 const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard";
746 // A boolean pref which determines whether the accessibility menu shows 750 // A boolean pref which determines whether the accessibility menu shows
747 // regardless of the state of a11y features. 751 // regardless of the state of a11y features.
748 const char kShouldAlwaysShowAccessibilityMenu[] = "settings.a11y.enable_menu"; 752 const char kShouldAlwaysShowAccessibilityMenu[] = "settings.a11y.enable_menu";
749 753
750 // A boolean pref which turns on Advanced Filesystem 754 // A boolean pref which turns on Advanced Filesystem
(...skipping 1462 matching lines...) Expand 10 before | Expand all | Expand 10 after
2213 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; 2217 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update";
2214 2218
2215 #if defined(OS_CHROMEOS) 2219 #if defined(OS_CHROMEOS)
2216 // The RLZ brand code, if enabled. 2220 // The RLZ brand code, if enabled.
2217 const char kRLZBrand[] = "rlz.brand"; 2221 const char kRLZBrand[] = "rlz.brand";
2218 // Whether RLZ pings are disabled. 2222 // Whether RLZ pings are disabled.
2219 const char kRLZDisabled[] = "rlz.disabled"; 2223 const char kRLZDisabled[] = "rlz.disabled";
2220 #endif 2224 #endif
2221 2225
2222 } // namespace prefs 2226 } // namespace prefs
OLDNEW
« chrome/browser/chromeos/accessibility/magnification_manager.cc ('K') | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698