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

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

Issue 1157553003: Center the focus of the text input in magnifier screen. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix nits. Created 5 years, 6 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
« no previous file with comments | « chrome/common/pref_names.h ('k') | tools/metrics/actions/actions.xml » ('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) 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 #include "chrome/common/pref_font_webkit_names.h" 8 #include "chrome/common/pref_font_webkit_names.h"
9 9
10 namespace prefs { 10 namespace prefs {
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 const char kAccessibilityStickyKeysEnabled[] = 559 const char kAccessibilityStickyKeysEnabled[] =
560 "settings.a11y.sticky_keys_enabled"; 560 "settings.a11y.sticky_keys_enabled";
561 // A boolean pref which determines whether spoken feedback is enabled. 561 // A boolean pref which determines whether spoken feedback is enabled.
562 const char kAccessibilitySpokenFeedbackEnabled[] = "settings.accessibility"; 562 const char kAccessibilitySpokenFeedbackEnabled[] = "settings.accessibility";
563 // A boolean pref which determines whether high conrast is enabled. 563 // A boolean pref which determines whether high conrast is enabled.
564 const char kAccessibilityHighContrastEnabled[] = 564 const char kAccessibilityHighContrastEnabled[] =
565 "settings.a11y.high_contrast_enabled"; 565 "settings.a11y.high_contrast_enabled";
566 // A boolean pref which determines whether screen magnifier is enabled. 566 // A boolean pref which determines whether screen magnifier is enabled.
567 const char kAccessibilityScreenMagnifierEnabled[] = 567 const char kAccessibilityScreenMagnifierEnabled[] =
568 "settings.a11y.screen_magnifier"; 568 "settings.a11y.screen_magnifier";
569 // A boolean pref which determines whether screen magnifier should center
570 // the text input focus.
571 const char kAccessibilityScreenMagnifierCenterFocus[] =
572 "settings.a11y.screen_magnifier_center_focus";
569 // A integer pref which determines what type of screen magnifier is enabled. 573 // A integer pref which determines what type of screen magnifier is enabled.
570 // Note that: 'screen_magnifier_type' had been used as string pref. Hence, 574 // Note that: 'screen_magnifier_type' had been used as string pref. Hence,
571 // we are using another name pref here. 575 // we are using another name pref here.
572 const char kAccessibilityScreenMagnifierType[] = 576 const char kAccessibilityScreenMagnifierType[] =
573 "settings.a11y.screen_magnifier_type2"; 577 "settings.a11y.screen_magnifier_type2";
574 // A double pref which determines a zooming scale of the screen magnifier. 578 // A double pref which determines a zooming scale of the screen magnifier.
575 const char kAccessibilityScreenMagnifierScale[] = 579 const char kAccessibilityScreenMagnifierScale[] =
576 "settings.a11y.screen_magnifier_scale"; 580 "settings.a11y.screen_magnifier_scale";
577 // A boolean pref which determines whether the virtual keyboard is enabled for 581 // A boolean pref which determines whether the virtual keyboard is enabled for
578 // accessibility. This feature is separate from displaying an onscreen keyboard 582 // accessibility. This feature is separate from displaying an onscreen keyboard
(...skipping 1690 matching lines...) Expand 10 before | Expand all | Expand 10 after
2269 // (name and a list of clients that registered the whitelist). 2273 // (name and a list of clients that registered the whitelist).
2270 const char kRegisteredSupervisedUserWhitelists[] = 2274 const char kRegisteredSupervisedUserWhitelists[] =
2271 "supervised_users.whitelists"; 2275 "supervised_users.whitelists";
2272 2276
2273 #if defined(ENABLE_EXTENSIONS) 2277 #if defined(ENABLE_EXTENSIONS)
2274 // Policy that indicates how to handle animated images. 2278 // Policy that indicates how to handle animated images.
2275 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; 2279 const char kAnimationPolicy[] = "settings.a11y.animation_policy";
2276 #endif 2280 #endif
2277 2281
2278 } // namespace prefs 2282 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | tools/metrics/actions/actions.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698